/* CHAT LAUNCHER */
.chat-launcher {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 90px;
  height: 90px;
  background: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  border-radius: 30px 0px 0px;
  font-weight: bold;
  font: 13px;
}

.chat-launcher img {
  width: 45px;
  margin-bottom: 4px;
}

.chat-launcher span {
  font-size: 11px;
  text-align: center;
  line-height: 1.2;
}

/* CHAT BOX */
.chat-box {
  position: fixed;
  right: 48px;
  bottom: 90px;
  width: 320px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  display: none;
  flex-direction: column;
  z-index: 9999;
}

.chat-box.active {
  display: flex;
}

/* HEADER */
.chat-header {
  background: #ff5f15;
  color: #000;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* MESSAGES */
.chat-messages {
  padding: 15px;
  max-height: 220px;
  overflow-y: auto;
  font-size: 14px;
}

.bot-message {
  background: #f3f3f3;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.user-message {
  background: #000;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  text-align: right;
}

/* OPTIONS */
.chat-body {
  padding: 12px;
  border-top: 1px solid #eee;
}

.chat-option {
  width: 100%;
  padding: 10px;
  margin-bottom: 8px;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
}

.chat-option:hover {
  background: #000;
  color: #fff;
}

.chat-row {
  display: flex;
  gap: 6px;
}

.chat-option.small {
  flex: 1;
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .chat-box {
    right: 10px;
    width: 90%;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
body {
  background: #fff;
}
input,
textarea {
  caret-color: transparent;
}

/* Apply brush cursor everywhere */
*,
*::before,
*::after {
  cursor: url("./assets/png-clipart-pencil-paintbrush-drawing-blue-paint-brush-box-watercolor-painting-miscellaneous-removebg-preview.png")
      8 8,
    auto !important;
}

html,
body {
  cursor: url("./assets/png-clipart-pencil-paintbrush-drawing-blue-paint-brush-box-watercolor-painting-miscellaneous-removebg-preview.png")
      0 0,
    auto;
}
a,
button,
input,
textarea,
select,
label {
  cursor: url("./assets/png-clipart-pencil-paintbrush-drawing-blue-paint-brush-box-watercolor-painting-miscellaneous-removebg-preview.png")
      0 0,
    auto !important;
}
i,
svg,
img {
  cursor: inherit;
}

.brush-cursor {
  position: fixed;
  width: 35px;
  height: 35px;
  background: url("./assets/png-clipart-pencil-paintbrush-drawing-blue-paint-brush-box-watercolor-painting-miscellaneous-removebg-preview.png")
    no-repeat center;
  background-size: contain;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

/* =========================
   HAMBURGER (MOBILE ONLY)
========================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1200;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #000;
  transition: 0.3s ease;
}

/* =========================
   MOBILE MENU
========================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1100;
  padding: 24px;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-header img {
  max-width: 160px;
}

#closeMenu {
  font-size: 32px;
  cursor: pointer;
}

.mobile-nav-links {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-links a {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

/* =========================
   RESPONSIVE TRIGGER
========================= */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ========================= NAVBAR ========================= */
nav {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 40px;
  z-index: 50;
  transition: background 0.3s ease, color 0.3s ease;
  background: #fff;
  color: #000;
}

/* nav:hover {
  background: #f;
  backdrop-filter: blur(6px);
}

nav.scrolled {
  background: #ff6ec7;
  backdrop-filter: blur(6px);
}

nav:hover.scrolled {
  background: #ff6ec7;
  backdrop-filter: blur(6px);
} */

/* LEFT LOGO */
.nav-logo {
  position: absolute;
  top: 9px;
  left: -20px;
}

.nav-logo img {
  width: 210px;
}

/* CENTER MENU */
.nav-menu {
  display: flex;
  gap: 35px;
  align-items: center;
  padding-left: 115px;
}
.nav-menu a {
  text-decoration: none;
  font-weight: 600;
  color: #000;
  transition: 0.2s;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
nav:hover .nav-menu a {
  color: black;
}
.nav-menu a:hover {
  color: #ff5f15;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Currency Box */
.currency-selector {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.selected-currency {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  border: 2px solid #000;
}

.selected-currency img.flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 3px;
}

/* Dropdown */
.currency-dropdown {
  display: none;
  position: absolute;
  top: 42px;
  left: 0;
  width: 260px;
  max-height: 300px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  list-style: none;
  padding: 0;
  z-index: 1000;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.25s ease;
}

.currency-dropdown li {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.currency-dropdown li:hover {
  background: #f5f5f5;
}

/* Fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cart badge */
.cart-wrapper {
  position: relative;
  font-size: 20px;
  color: #000;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #e60023;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 650px) {
  .nav-icons {
    gap: 10px;
  }

  .selected-currency {
    padding: 6px 10px;
  }

  .currency-dropdown {
    width: 220px;
  }
}

/* MOBILE */
@media (max-width: 780px) {
  .nav-menu {
    display: none;
  }
}

/* ========================= HERO SECTION ========================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: white;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  max-width: 410px;
  padding: 40px;
  margin-left: 40px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-row {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.2s ease;
  border: 2px solid white;
}

.btn-primary {
  background: #ff5f15;
  color: #fff;
  border-color: #ff5f15;
}
.btn-primary:hover {
  opacity: 0.85;
}

.btn-outline {
  background: transparent;
  color: white;
}
.btn-outline:hover {
  background: white;
  color: black;
}

/* RESPONSIVE HERO */
@media (max-width: 768px) {
  .hero-content {
    margin-left: 20px;
    padding: 20px;
  }
  .hero-content h1 {
    font-size: 32px;
  }
  .hero-content p {
    font-size: 15px;
  }
  .btn-row {
    flex-direction: column;
    width: 60%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 26px;
  }
  .btn-row {
    width: 100%;
  }
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$   slider   ########################3 */
.slider-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 5px;
  padding: 50px 0px;
}

.title-underline {
  width: 50px;
  height: 3px;
  background: #d2006b;
  margin-bottom: 30px;
}

.product-card {
  text-align: center;
  padding: 10px;
}

.img-box {
  position: relative;
}

.img-box img {
  width: 100%;
  border: 4px solid black;
}

.sale-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: red;
  color: white;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 3px;
}

.add-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: white;
  border: 1px solid black;
  padding: 5px 7px;
  font-weight: bold;
  cursor: pointer;
}

.product-title {
  margin-top: 12px;
  font-size: 15px;
}

.price-box {
  margin-top: 6px;
}

.sale-price {
  color: red;
  margin-right: 5px;
}

.old-price {
  text-decoration: line-through;
  opacity: 0.6;
}

.regular-price {
  font-weight: bold;
}

/* SWIPER SETTINGS */
.swiper {
  width: 100%;
  padding-bottom: 40px;
}

.swiper-slide {
  width: 25%; /* 4 per slide */
}

@media (max-width: 1024px) {
  .swiper-slide {
    width: 33.33%; /* 3 per row */
  }
}

@media (max-width: 768px) {
  .swiper-slide {
    width: 50%; /* 2 per row */
  }
}

@media (max-width: 480px) {
  .swiper-slide {
    width: 100%; /* 1 per row */
  }
}

/* SHOP SECTION */
/* .shop-section {
  padding: 60px 40px;
  background: #fff;
}

.shop-title {
  font-size: 32px;
  margin-bottom: 35px;
  font-weight: 700;
  text-align: left;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
} */

/* PRODUCT CARD */
/* .product-card {
  position: relative;
  cursor: pointer;
}

.img-box {
  position: relative;
}

.img-box img {
  width: 100%;
  border-radius: 6px;
}

.sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff5f15;
  color: white;
  padding: 4px 10px;
  font-size: 13px;
  border-radius: 4px;
}

.add-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: black;
  color: white;
  width: 35px;
  height: 35px;
  font-size: 22px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.product-title {
  font-size: 17px;
  margin-top: 10px;
}

.price-box {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.sale-price {
  font-weight: bold;
}

.old-price {
  text-decoration: line-through;
  opacity: 0.5;
} */

/* RESPONSIVE */
/* @media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 720px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.shop-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  padding: 40px;
}

.product-card {
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 8px;
  position: relative;
  text-align: center;
}

.img-box img {
  width: 100%;
  border-radius: 8px;
}

.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff5f15;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.add-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  font-size: 20px;
  cursor: pointer;
  background: black;
  color: white;
}

.product-title {
  margin: 15px 0 5px;
  font-size: 17px;
  font-weight: 600;
}

.price-box {
  font-size: 16px;
  margin-bottom: 10px;
}

.sale-price {
  color: #ff5f15;
  font-weight: bold;
}

.old-price {
  text-decoration: line-through;
  margin-left: 6px;
  color: #777;
  font-size: 14px;
} */

.shop-section {
  width: 90%;
  padding: 40px 20px;
}

.shop-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  /* margin-top: 120px; */
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* PRODUCT ROW */
.product-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 40px;
}

.product-image img {
  width: 600px;
  height: auto;
  border-radius: 4px;
  object-fit: cover;

  border: 12px solid #ff5f15;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);

  transition: 0.4s ease;
}

.product-image img:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.product-info {
  flex: 1;
}

/* Hidden before scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease-out;
}

/* Image from LEFT */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: 0.9s ease-out;
}

/* Text from RIGHT */
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: 0.9s ease-out;
}

/* When visible */
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.product-info h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.summary {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 20px;
}

/* PRICES */
.price-box-row {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 25px;
}

.sale-price {
  font-size: 22px;
  font-weight: bold;
  color: #000;
}

.old-price {
  font-size: 18px;
  text-decoration: line-through;
  color: #777;
}

/* BUTTONS */
.btn-group {
  display: flex;
  gap: 15px;
}

.buy-btn {
  padding: 12px 22px;
  background: #ff5f15;
  color: #000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
}

.cart-btn {
  padding: 12px 22px;
  background: transparent;
  color: #000;
  border: 2px solid black;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
}
.cart-btn a {
  color: #000;
  text-decoration: none;
}

.buy-btn:hover {
  opacity: 0.8;
}

.cart-btn:hover {
  background: #ff5f15;
}
.cart-btn a:hover {
  color: black;
}

/* RESPONSIVE */
@media (max-width: 850px) {
  .product-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-info h3 {
    text-align: center;
  }

  .summary {
    max-width: 100%;
  }

  .btn-group {
    justify-content: center;
  }

  .product-image img {
    width: 100%;
    max-width: 450px;
  }
}

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Inter:wght@300;400;500;600&display=swap");

.about-artist {
  /* margin-top: 100px; */
  padding: 90px 40px;
  background: #f8f5f2;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* IMAGE */
.about-image img {
  width: 480px;
  height: auto;
  border-radius: 8px;
  border: 10px solid #ff5f15;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03) rotate(-1deg);
}

/* CONTENT */
.about-content {
  flex: 1;
  min-width: 300px;
  font-family: "Inter", sans-serif;
}

.about-content h2 {
  font-size: 42px;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}

.about-content h2 span {
  color: #e6007e;
}

.about-content p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 14px;
  color: #333;
}

/* Highlight quotes */
.intro {
  font-size: 18px;
  font-weight: 500;
}

.closing {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  color: #222;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    width: 100%;
    max-width: 420px;
  }
}

/* ANIMATION (Scroll Reveal) */
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: 0.8s ease-out;
}

.reveal-left {
  transform: translateX(-80px);
}

.reveal-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Sidebar container */
.sidebar {
  position: fixed;
  top: 28%;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 99999;
}

/* Common styles */
.sidebar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

/* "Have a Product in Mind?" vertical button */
.product-btn {
  background-color: #ff5f15;
  padding: 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-radius: 6px 0px 0px 6px;
  transform: translateX(0);
  width: 40px;
  text-align: center;
  color: #fff;
}

/* .product-btn:hover {
  transform: translateX(-80px);
  background-color: #e0266f;
} */

/* WhatsApp */
.sidebar-item.whatsapp {
  background-color: #25d366;
  width: 140px;
  padding: 10px;
  border-radius: 6px 0 0 6px;
  gap: 8px;
  transform: translateX(100px);
  transition: transform 0.4s ease;
  padding-right: 20px;
}

.sidebar-item.whatsapp:hover {
  transform: translateX(0);
}

/* Call */
.sidebar-item.call {
  background-color: blue;
  width: 140px;
  padding: 10px;
  border-radius: 6px 0 0 6px;
  gap: 8px;
  transform: translateX(100px);
  transition: transform 0.4s ease;
  padding-right: 70px;
}

.sidebar-item.call:hover {
  transform: translateX(0);
}

/* Icons */
.sidebar-item img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* LinkedIn button */
.sidebar-item.linkedin {
  background-color: #fa008a;
  width: 140px;
  padding: 10px;
  border-radius: 6px 0 0 6px;
  gap: 8px;
  transform: translateX(100px);
  padding-right: 30px;
  padding-left: 20px;
}

.sidebar-item.linkedin:hover {
  transform: translateX(0);
}

/* Facebook button */
.sidebar-item.facebook {
  background-color: #3b5998;
  width: 140px;
  padding: 10px;
  border-radius: 6px 0 0 6px;
  gap: 8px;
  transform: translateX(100px);
  padding-right: 22px;
}

.sidebar-item.facebook:hover {
  transform: translateX(0);
}

/* Icons */
.sidebar-item img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* Contact Panel (Right Side Slide-out) */
.contact-panel {
  position: fixed;
  top: 160px;
  right: -350px;
  width: 350px;
  height: 60vh;
  background: #fff;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
  transition: right 0.4s ease;
  z-index: 999;
  padding: 20px;
  padding-right: 50px;
}

.contact-panel.open {
  right: 0;
}

/* Contact Header */
.contact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-header h3 {
  color: #ff5f15;
  margin: 0;
}

.contact-header button {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* Contact Form */
.contact-panel form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.contact-panel input,
.contact-panel textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.contact-panel button {
  background: #ff5f15;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

/* MAIN SECTION */
.contact-section {
  padding: 80px 6%;
  display: flex;
  justify-content: center;
  background: #fafafa;
}

.contact-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXT SIDE */

.contact-info h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.contact-details p {
  font-size: 16px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-details i {
  color: #ff5f15;
  font-size: 18px;
}

/* FORM SIDE */
.contact-form {
  background: white;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid #ff5f15;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #ff5f15;
  box-shadow: 0 0 7px rgba(230, 0, 126, 0.3);
}

textarea {
  height: 120px;
  resize: none;
}

/* BUTTON */
.send-btn {
  width: 100%;
  padding: 14px;
  background: #ff5f15;
  border: none;
  color: #ffff;
  font-size: 17px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.send-btn:hover {
  background: #f4560ca7;
}

/* RESPONSIVE */
@media (max-width: 850px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info h2 {
    font-size: 32px;
  }
}

/* ============================
   SCROLL REVEAL ANIMATIONS
   ============================ */
/* 
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: 0.8s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: 0.8s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
} */

/* 8666666666666666666648477777777777888888888888888888888888888888 */
.footer {
  background: #000;
  color: #fff;
  padding: 60px 5%;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 17px;
  margin-bottom: 18px;
  font-weight: 600;
  color: #ff5f15;
}

.footer-col img {
  width: 150px;
  border: 1px solid #ff5f15;
}
.footer-col ul li {
  list-style: none;
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ddd;
  font-size: 14px;
  transition: 0.3s;
}
.footer-col a {
  text-decoration: none;
}
.footer-col ul li a:hover {
  color: #fff;
}

.footer-col p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
}

.social-icons .icon {
  margin-top: 10px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ff5f1f;
  transition: 0.3s ease;
  color: #fff;
}

.social-icons .icon svg {
  width: 22px;
  height: 22px;
}

.social-icons .icon:hover {
  background: #fff;
  color: #000;
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.newsletter-box {
  display: flex;
  margin-top: 10px;
}

.newsletter-box input {
  width: 100%;
  padding: 10px;
  background: #111;
  border: 1px solid #333;
  color: #ff5f15;
}

.newsletter-box button {
  background: #ff5f15;
  border: none;
  width: 45px;
  cursor: pointer;
  font-size: 20px;
}

/* Footer bottom */
.footer-bottom {
  /* margin-top: 50px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid #fff;
  padding: 5px;
}
/* FOOTER CURRENCY SELECTOR */
.footer-currency-selector {
  position: relative;
  width: 260px;
  background: #111;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid #333;
}

.footer-selected-currency {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ff5f15;
  font-size: 15px;
}

.footer-selected-currency .flag {
  width: 20px;
  margin-right: 10px;
}
.footer-currency-dropdown {
  position: absolute;
  bottom: 55px; /* ⬅ opens upward */
  left: 0;
  width: 100%;
  max-height: 220px;
  overflow-y: auto;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 6px 0;
  display: none;
  z-index: 999;
}

.footer-currency-dropdown li {
  padding: 10px 15px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.footer-currency-dropdown li:hover {
  background: #333;
}

.footer-bottom {
  width: 100%;
  /* padding: 20px 0; */
  /* background: #f8f8f8; */
}

.footer-bottom-wrapper {
  max-width: 1300px;
  /* margin: auto; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
}

/* Center text styling */
.footer-bottom-center .copy-text {
  font-size: 14px;
  color: #555;
  text-align: center;
  white-space: nowrap;
}

/* Payment right section */
.footer-bottom-center img {
  height: 40px;
  margin-left: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom-wrapper {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

.footer-rights {
  text-align: center;
  margin-top: 20px;
  color: #ccc;
  padding-top: 10px;
  border-top: 1px solid #333;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom-center img {
    height: 25px;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .newsletter-box {
    flex-direction: column;
  }
  .newsletter-box button {
    width: 100%;
    margin-top: 8px;
  }
}

.testimonials-section {
  padding: 70px 20px;
  max-width: 900px;
  margin: auto;
}

.testi-heading {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.testimonial {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

.testi-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-user {
  flex: 1;
}

.testi-user strong {
  display: block;
  font-size: 17px;
  color: #222;
}

.testi-user span {
  font-size: 14px;
  color: #777;
}

.t-flag {
  width: 26px;
  height: auto;
  border-radius: 4px;
  margin-left: 10px;
}

.testi-text {
  margin-top: 15px;
  font-size: 15.8px;
  line-height: 1.6;
  color: #444;
}
.desgin- {
  text-align: center;
  color: #ff5f15;
}

.features-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  padding: 60px 8%;
}
.features-tittle {
  color: black;
  font-weight: bold;
}

.feature-box {
  text-align: center;
  padding: 25px 20px;
  border-radius: 10px;
  background: #000;
  border: 2px solid #ff5f15;
}

.feature-icon svg {
  margin-bottom: 15px;
  color: #ff5f15;
}

.feature-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #ff5f15;
}

.feature-box p {
  font-size: 15px;
  color: #ff5f15;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .features-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .features-section {
    grid-template-columns: 1fr;
  }
}

.vedio-one {
  padding: 50px;
  text-align: center;
}
.vedio-one video {
  width: 60%;
  border: 10px solid #ff5f15;
}
.vedio-one p {
  font-size: 20px;
  margin-bottom: 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: bold;
}
.pinky-stlye {
  color: #fa008a;
}
.category-section {
  width: 100%;
  padding: 60px 40px;
  box-sizing: border-box;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  text-decoration: none;
  aspect-ratio: 3 / 4;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Bottom overlay */
.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px 16px;
  background: linear-gradient(
    to top,
    rgba(92, 20, 60, 0.85),
    rgba(92, 20, 60, 0.4),
    transparent
  );
  text-align: center;
}

.category-overlay h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.4px;
}

/* Hover (subtle, premium) */
.category-card:hover img {
  transform: scale(1.04);
}

.category-card img {
  transition: transform 0.4s ease;
}

/* ---------- RESPONSIVE ---------- */

/* Tablets */
@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .category-section {
    padding: 40px 16px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .category-overlay h3 {
    font-size: 18px;
  }
}

.auth-features {
  width: 100%;
  background: #f9f9f9;
  padding: 60px 20px;
}

.auth-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.auth-box {
  background: #fff;
  border: 3px solid #000;
  text-align: center;
  padding: 35px 20px;
  /* border: 3px solid #e8e4da; */
}

.auth-box img {
  width: 60px;
  height: auto;
  margin-bottom: 18px;
}

.auth-box h4 {
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.auth-box p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* Tablet */
@media (max-width: 900px) {
  .auth-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .auth-container {
    grid-template-columns: 1fr;
  }

  .auth-box {
    padding: 30px 15px;
  }
}

.trending-art {
  padding: 60px 20px;
  text-align: center;
  /* background: linear-gradient(to bottom, #ffe0e6, #e8edc5); */
}

.trending-art h2 {
  font-size: 45px;
  margin-bottom: 40px;
  font-weight: bold;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #111;
}

.art-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.art-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.art-item img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #ff5f15;
}

.art-item img:hover {
  border: 6px solid #ff9f6e;
}

.art-item p {
  margin-top: 12px;
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

/* 📱 Tablet */
@media (max-width: 768px) {
  .art-item img {
    width: 100px;
    height: 100px;
  }

  .trending-art h2 {
    font-size: 26px;
  }
}

/* 📱 Mobile */
@media (max-width: 480px) {
  .art-categories {
    gap: 20px;
  }

  .art-item img {
    width: 85px;
    height: 85px;
  }

  .art-item p {
    font-size: 14px;
  }
}

.social-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.social-item {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  background: #fff;
}

.social-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 600px) {
  .social-item {
    width: 40px;
    height: 40px;
  }
}

/* SECTION */
.pa-section {
  width: 90%;
  padding: 40px 20px;
  margin: auto;
}

.pa-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

/* LIST */
.pa-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* ITEM ROW */
.pa-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 40px;
}

/* IMAGE */
.pa-img img {
  width: 600px;
  height: auto;
  border-radius: 4px;
  object-fit: cover;

  border: 12px solid #ff5f15;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: 0.4s ease;
}

.pa-img img:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

/* CONTENT */
.pa-content {
  flex: 1;
}

.pa-content h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.pa-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 20px;
}

/* ACTIONS */
.pa-actions {
  display: flex;
  gap: 15px;
}

/* BUTTONS */
.pa-buy {
  padding: 12px 22px;
  background: #ff5f15;
  color: #000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
}

.pa-contact {
  padding: 12px 22px;
  background: transparent;
  color: #000;
  border: 2px solid black;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  text-decoration: none;
}

.pa-buy:hover {
  opacity: 0.8;
}

.pa-contact:hover {
  background: #ff5f15;
  color: black;
}

/* SCROLL ANIMATIONS */
.pa-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease-out;
}

.pa-reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: 0.9s ease-out;
}

.pa-reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: 0.9s ease-out;
}

.pa-reveal.visible,
.pa-reveal-left.visible,
.pa-reveal-right.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* RESPONSIVE */
@media (max-width: 850px) {
  .pa-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pa-content h3 {
    text-align: center;
  }

  .pa-content p {
    max-width: 100%;
  }

  .pa-actions {
    justify-content: center;
  }

  .pa-img img {
    width: 100%;
    max-width: 450px;
  }
}
