/* 🩵 Import Google Fonts (same as Manvaar) */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;700&family=Asul:wght@400&display=swap');

/* 🎨 Color + Font Variables */
:root {
  --primary-gold: #d4af37;
  --gold: #d4af37;
  --dark-gold: #b18b0e;
  --dark-charcoal: #1a1a1a;
  --dark: #333;
  --light-gold: #f1e5b9;

  --font-body-family: 'Jost', sans-serif;
  --font-heading-family: 'Asul', serif;

  --font-body-weight: 400;
  --font-body-weight-bold: 700;
  --font-heading-weight: 400;
}

/* 🌿 Base Style */


body {
  margin: 0;
  background-color: #fcfbfa;
  color: var(--dark-charcoal);
  font-family: var(--font-body-family);
  font-weight: var(--font-body-weight);
  font-style: normal;
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: 0.05rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 🖋 Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading-family);
  font-weight: var(--font-heading-weight);
  color: var(--dark);
  line-height: 1.2;
}

/* ✨ Optional Gold Accent Style */
.text-gold {
  color: var(--primary-gold);
}

.btn-gold {
  background-color: var(--primary-gold);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 0;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-gold:hover {
  background-color: var(--dark-gold);
}



       /* WhatsApp Sticky Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px; /* Bottom se distance */
    right: 20px;  /* Right se distance */
    background-color: #25d366;
    color: #fff;
    font-size: 30px;
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 50%;
    line-height: 60px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background-color: #20b954;
    transform: scale(1.1);
}
.icon-box i{
font-size: 1.3rem;
}
.icon-box p{
font-size: 0.9rem;
}
        a {
            text-decoration: none !important;
        }
        @media (min-width: 1200px) {
       .container, .container-lg, .container-md, .container-sm, .container-xl {
         max-width: 1250px !important;
         }
       }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-gold);
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--dark);
        }

        .logo i {
            margin-right: 10px;
        }
  @media (max-width: 500px) {
.logo{
    font-size: 17px;
}
  }
        /* slider */
        /* 3D Perspective Slider */
        .slider-3d {
            width: 100%;
            padding-left: 1rem;
            padding-right: 1rem;
            height: 420px;
            margin: 0 auto;
            /* border-radius: 24px; */
            overflow: hidden;
        }
 @media (max-width: 600px) {
             .slider-3d {
                height: 580px;
            }
        }

        .slider-3d .swiper-slide {
            position: relative;
            display: flex;
            align-items: flex-end;
            overflow: hidden;
            /* border-radius: 16px; */
            transition: transform 0.3s ease;
        }

        .slider-3d .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: fill;
            transition: transform 0.8s ease;
        }

        .slider-3d .swiper-slide:hover img {
            transform: scale(1.05);
        }

        .slider-3d .swiper-slide-active {
            transform: scale(1.05);
            z-index: 2;
        }

        .slider-3d .swiper-slide-prev,
        .slider-3d .swiper-slide-next {
            transform: scale(0.9);
        }

        .swiper-button-prev {
            color: #d4af37 !important;
        }

        .swiper-button-next {
            color: #d4af37 !important;
            font-size: 8px !important;
        }

        .swiper-pagination-bullet-active {
            color: #d4af37 !important;
        }

        /* slider */

        /* navbar */
       
/* Mega dropdown base style */
.mega-dropdown {
    min-width: 700px;
}

/* Product card */
.hover-card {
    transition: all 0.3s ease;
}
.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.product-img {
    height: 130px;
    width: 100%;
    object-fit: fill;
    transition: transform 0.3s ease;
}
.product-item:hover .product-img {
    transform: scale(1.08);
}


/* Mobile responsive adjustments */
@media (max-width: 991px) {
    .mega-dropdown {
        min-width: 100% !important;
        position: static !important;
        box-shadow: none !important;
        border: none !important;
        padding: 1rem 0 !important;
    }

    .product-img {
        height: 70px;
    }

    .hover-card:hover {
        transform: none;
        box-shadow: none;
    }
}

    /* home page product show css  start--------------------- */
     /* Section Title */

/* Slider (Horizontal Scroll) */
.product-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 10px 20px;
    scrollbar-width: none; /* Firefox */
}
.product-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Product Card */
.product-card {
    flex: 0 0 70%; /* Show 70% card, rest peeking */
    max-width: 300px;
    scroll-snap-align: start;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 23rem;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Image */
.product-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Square */
}
        @media (max-width: 500px) {
            .product-image{
                height: 250px;
            }
        }
.product-image img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.product-badge {
    width: 70px;
    position: absolute;
    top: 10px; left: 10px;
    background: #d4af37;
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 6px;
}

/* Info */
.product-info {
    padding: 15px;
    text-align: center;
}
.product-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}
.product-price {
    font-size: 14px;
}
.current-price {
    font-weight: 600;
    color: #111;
    margin-right: 6px;
    font-size: 16px;
}
.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 6px;
}
.discount {
    color: #d9534f;
    font-size: 11px;
    font-weight: 500;
}

/* Responsive */
@media (min-width: 992px) {
    .product-card {
        flex: 0 0 23%; /* 4 cards visible on desktop */
    }
}
@media (max-width: 500px) {
    .product-card {
         height: 24rem;
    }
}
   

    /* home page product show css  end--------------------- */


        /* Collections    category section css start ------------------------- */
        .collections {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding-top: 12px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .collection-card {
            position: relative;
            height: 350px;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .collection-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .collection-img {
            width: 100%;
            height: 100%;
            object-fit: fill;
            transition: transform 0.5s ease;
        }

        .collection-card:hover .collection-img {
            transform: scale(1.05);
        }

        .collection-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            padding: 30px;
            color: white;
        }

        .collection-name {
            font-size: 20px;
            margin-bottom: 10px;
        }

  

      .collection-link {
    position: relative;
    display: inline-block;
    padding: 8px 16px;
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    overflow: hidden;
    transition: color 0.4s ease;
    z-index: 1;
    font-size: 14px;
}

.collection-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #fff;
    z-index: -1;
    transition: width 0.4s ease;
}

.collection-link:hover::before {
    width: 100%;
}

.collection-link:hover {
    color: #000;
}

        /* Collections    category section css end ------------------------- */



        /* footer section start ------------------------------------------------------------- */
        .main-content {
            flex: 1;
        }

        /* Footer Styles */
        .luxe-footer {
            background: var(--footer-bg);
            color: #000000;
            padding: 70px 0 0;
            position: relative;
            overflow: hidden;
        }

   

        .footer-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 2rem;
            color: #000000;
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        .footer-tagline {
            color: rgba(0, 0, 0, 0.7);
            margin-bottom: 2rem;
            max-width: 300px;
            line-height: 1.6;
        }

        .footer-heading {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #000000;
            position: relative;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary-gold);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(0, 0, 0, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--primary-gold);
            transform: translateX(5px);
        }

        .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-contact li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            color: rgba(0, 0, 0, 0.7);
        }

        .footer-contact i {
            color: var(--primary-gold);
            margin-right: 12px;
            font-size: 1.1rem;
            margin-top: 4px;
        }

        .newsletter-form {
            position: relative;
            margin-top: 1.5rem;
        }

        .newsletter-input {
            width: 100%;
            background: rgba(255, 255, 255, 0.1);
          border-color: var(--primary-gold);
            padding: 12px 20px;
            border-radius: 4px;
            color: #000000;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--primary-gold);
            background: rgba(255, 255, 255, 0.15);
        }

        .newsletter-btn {
            position: absolute;
            right: 5px;
            top: 5px;
            background: var(--primary-gold);
            color: var(--dark-charcoal);
            border: none;
            padding: 7px 15px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: #c69c2b;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 1.5rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000000;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--primary-gold);
            color: var(--dark-charcoal);
            transform: translateY(-3px);
        }

        .payment-methods {
            display: flex;
            gap: 10px;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .payment-method {
            width: 50px;
            height: 30px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 10px !important;
            padding: 25px 0;
        }

        .copyright {
            color: rgba(0, 0, 0, 0.6);
            text-align: center;
            margin: 0;
        }

        .footer-badge {
            background: var(--primary-gold);
            color: var(--dark-charcoal);
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.8rem;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .trust-badges {
            display: flex;
            gap: 15px;
            margin-top: 1.5rem;
        }

        .trust-badge {
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 15px;
            border-radius: 4px;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .trust-badge i {
            color: var(--primary-gold);
        }

        @media (max-width: 992px) {
            .footer-col {
                margin-bottom: 40px;
            }
        }

        @media (max-width: 576px) {
            .luxe-footer {
                padding: 50px 0 0;
            }

            .social-icons,
            .payment-methods,
            .trust-badges {
                justify-content: center;
            }

            .footer-heading {
                text-align: center;
            }

            .footer-heading::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-tagline {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }
        }

           /* footer section end ------------------------------------------------------------- */

        /* --------------------------spin css show n left side  --------------------------*/
            /* Overlay */
        .spin-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: flex-start;
            align-items: center;
            z-index: 9999;
        }

        /* Popup */
        .spin-popup {
            background: linear-gradient(90deg, #c79034, #704e1e);
            width: 450px;
            height: 100%;
            color: #fff;
            padding: 30px;
            position: relative;
            animation: slideIn 0.8s ease forwards;
            transform: translateX(-100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        @keyframes slideIn {
            to {
                transform: translateX(0);
            }
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 22px;
            cursor: pointer;
            color: #fff;
        }

        /* Wheel */
        .wheel-container {
            width: 220px;
            height: 220px;
            border-radius: 50%;
            border: 6px solid #fff;
            margin: 0 auto 20px;
            overflow: hidden;
            position: relative;
        }

        .wheel-container canvas {
            width: 100%;
            height: 100%;
        }

        .pointer {
            width: 30px;
            height: 30px;
            background: #fff;
            position: absolute;
            right: -15px;
            top: 50%;
            transform: translateY(-50%);
            clip-path: polygon(100% 50%, 0 0, 0 100%);
        }

        /* Form */
        .spin-popup h2 {
            font-size: 24px;
            text-align: center;
            margin-bottom: 10px;
        }

        .spin-popup p {
            text-align: center;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .spin-popup input {
            width: 100%;
            padding: 10px;
            margin-bottom: 12px;
            border: none;
            border-radius: 6px;
        }

        .spin-popup button {
            width: 100%;
            padding: 12px;
            background: #4b2e0f;
            color: #fff;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
        }

        .spin-popup button:hover {
            background: #3b230b;
        }

     

        /*------------------------ view button reasuble ------------------------*/
          .viewallproductbtn button {
            position: relative;
            background: transparent;
            border: 1px solid #d4af37;
            color: #000000;
            padding: 0.6rem 1.2rem;
            font-weight: 600;
            cursor: pointer;
            overflow: hidden;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .viewallproductbtn button::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            /* Start from left outside */
            width: 100%;
            height: 100%;
            background-color: #d4af37;
            z-index: -1;
            transition: left 0.4s ease;
        }

        .viewallproductbtn button:hover {
            color: white;
            /* Text turns white */
        }

        .viewallproductbtn button:hover::before {
            left: 0;
            /* Slide background in */
        }

        /* reels in front end section model and reels ----------------------------------------- */
         .reels-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 0 40px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    color: #000000;
}



        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 18px;
            width: 4px;
            background: linear-gradient(to bottom, var(--ig-primary), var(--ig-quinary));
            border-radius: 4px;
        }

  .reel-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.reel-card:hover {
    transform: translateY(-6px);
}

   .reel-card video {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
}

    .reel-name {
    font-size: 14px;
    font-weight: 600;
}

.reel-price {
    font-size: 16px;
    font-weight: 700;
    color: #ffd700;
}

        .reel-stats {
            display: flex;
            align-items: center;
            position: absolute;
            top: 12px;
            right: 12px;
            color: white;
            font-size: 13px;
            font-weight: 600;
        }

       .reel-stats {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
}

.reel-stats i {
    margin-right: 4px;
    font-size: 14px;
}

.badge-tag {
    position: absolute;
    top: 10px;
    left: 12px;
    background: linear-gradient(45deg, #c09300, #ddb101);
    color: #fff;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}
.reel-slider{
    width: 200px !important;
}
     
        .modal-container {
            display: flex;
            flex-direction: column;
        }

        @media(min-width: 992px) {
            .modal-container {
                flex-direction: row;
            }
        }

        .video-container {
            width: 100%;
            background: #000;
            position: relative;
        }

        @media(min-width: 992px) {
            .video-container {
                width: 50%;
            }
        }

        .video-container video {
            width: 100%;
            height: auto;
            max-height: 80vh;
            display: block;
        }

        .video-actions {
            position: absolute;
            right: 16px;
            bottom: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .video-action-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 20px;
            color: white;
            font-size: 13px;
        }

        .video-action-btn i {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.4);
            border-radius: 50%;
            margin-bottom: 4px;
            font-size: 18px;
        }

        .product-details {
            padding: 24px;
            width: 100%;
            overflow-y: auto;
            max-height: 80vh;
        }

        @media(min-width: 992px) {
            .product-details {
                width: 50%;
            }
        }
 @media(max-width: 500px) {
    .icon-box p{
font-size: 0.7rem;
}
        }
        .modal-product-title {
            font-weight: 700;
            font-size: 24px;
            margin-bottom: 8px;
        }

        .modal-product-price {
            font-size: 22px;
            font-weight: 700;
            color: #e91e63;
            margin-bottom: 16px;
        }

        .modal-product-description {
            font-size: 15px;
            color: var(--text-light);
            margin-bottom: 24px;
            line-height: 1.5;
        }

        .product-meta {
            display: flex;
            margin-bottom: 24px;
        }

        .product-meta-item {
            margin-right: 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .product-meta-value {
            font-weight: 700;
            font-size: 16px;
        }

        .product-meta-label {
            font-size: 13px;
            color: var(--text-light);
        }

        .color-options {
            display: flex;
            margin-bottom: 24px;
        }

        .color-option {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            margin-right: 12px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: transform 0.2s;
        }

        .color-option:hover {
            transform: scale(1.1);
        }

        .color-option.active {
            border-color: #000;
        }

        .size-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 24px;
        }

        .size-option {
            padding: 8px 14px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .size-option:hover {
            border-color: #999;
        }

        .size-option.active {
            background: var(--text-dark);
            color: white;
            border-color: var(--text-dark);
        }

        .btn-add-to-cart {
            background: linear-gradient(90deg, #c09300, #ddb101);
            background-size: 200% 100%;
            background-position: left center;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.4s ease;
            width: 100%;
            margin-bottom: 12px;
            cursor: pointer;
        }

        .btn-add-to-cart:hover {
            background-position: right center;
            /* hover par gradient left se right move hoga */
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }


        .btn-more-info {
            background: #f1f1f1;
            color: #262626;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            transition: 0.2s;
            width: 100%;
        }

        .btn-more-info:hover {
            background: #e4e4e4;
        }

        .modal-header {
            border: none;
            position: absolute;
            top: 0;
            right: 0;
            z-index: 10;
            padding: 1rem;
        }

        .modal-content {
            border-radius: 16px;
            overflow: hidden;
        }

        .modal-product-description {
            max-width: 100%;
            /*  full width le but overflow na kare */
            overflow: hidden;
            position: relative;
            font-size: 15px;
            line-height: 1.5;
            word-wrap: break-word;
            /*  words break ho jaye, x-scroll na aaye */
        }

        .read-more-btn {
            color: #d4af37;
            /* golden button */
            cursor: pointer;
            font-weight: 600;
            margin-left: 5px;
        }

              .icon-box {
            color: #b0762b;
            /* same golden-brown color */
            font-weight: 500;
        }

        .icon-box i {
            color: #b0762b;
        }

          /* reels in front end section model and reels  end ----------------------------------------- */

        /* ---------------------------------------product view ---------------------------------------------------------------------------------------------------- */

        
        .product-cardview {
            box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
            border-radius: 8px;
            background: white;
            overflow: hidden;
            margin: 0 auto;
            max-width: 1200px;
            padding: 25px;
        }
        
        .product-image-container {
            position: relative;
            height: 100%;
        }
        
        .product-image-main {
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            margin-bottom: 15px;
            
            display: flex;
            align-items: center;
            justify-content: center;
            /* background: #f8f9fa; */
            padding: 20px;
        } 
        
        .product-image-main img {
            max-height: 100%;
            width: auto;
            max-width: 100%;
            object-fit: contain;
        }
        
        .thumbnail-gallery {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-top: 15px;
        }
        
        .thumbnail {
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            opacity: 0.7;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            height: 80px;
            width: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
            padding: 5px;
        }
        
        .thumbnail:hover, .thumbnail.active {
            opacity: 1;
            border-color: var(--gold);
        }
        
        .thumbnail img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }
        
        .product-titleview {
            font-weight: 700;
            color: #2c3e50;
            font-size: 28px;
            margin-bottom: 10px;
        }
        
       
        
        .current-priceview {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c3e50;
        }
        
        .original-priceview {
            text-decoration: line-through;
            color: #6c757d;
            font-size: 1.2rem;
        }
        
        .discount-badge {
            background-color: #dc3545;
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .rating {
            color: #ffc107;
        }
        
        .btn-gold {
            background-color: var(--gold) !important;
            border-color: var(--gold) !important;
            color: white !important;
            font-weight: 600;
            padding: 12px 24px;
            transition: all 0.3s ease;
            border-radius: 4px;
        }
        
        .btn-gold:hover {
            background-color: var(--dark-gold) !important;
            border-color: var(--dark-gold) !important;
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .btn-outline-gold {
            background-color: transparent;
            border: 2px solid var(--gold) !important;
            color: var(--gold) ;
            font-weight: 600;
            padding: 12px 24px;
            transition: all 0.3s ease;
            border-radius: 4px;
        }
        
        .btn-outline-gold:hover {
            background-color: var(--gold) !important;
            color: white !important;
        }
        
     
        .size-option, .color-option {
            border: 2px solid #dee2e6;
            border-radius: 8px;
            padding: 8px 15px;
            margin-right: 10px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .size-option:hover, .size-option.selected {
            border-color: var(--gold);
            background-color: var(--light-gold);
        }
        
        .color-option {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            padding: 0;
        }
        
        .color-option:hover, .color-option.selected {
            transform: scale(1.1);
            box-shadow: 0 0 0 2px white, 0 0 0 4px var(--gold);
        }
        
        .delivery-info {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 15px;
            margin-top: 20px;
        }
        
        .benefit-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .benefit-icon {
            color: var(--gold);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .review-author {
            font-weight: 600;
            margin-bottom: 0;
        }
        
        .review-date {
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .stars {
            color: #ffc107;
        }
        
        .guarantee-badge {
            display: inline-flex;
            align-items: center;
            background-color: var(--light-gold);
            color: #856404;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .image-section {
            padding-right: 30px;
            border-right: 1px solid #eee;
        }
        
        @media (max-width: 992px) {
            .product-image-main {
                height: 400px;
            }
            
            .image-section {
                padding-right: 0;
                border-right: none;
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .product-image-main {
                height: 350px;
                margin-bottom: 15px;
            }
            
            .thumbnail {
                height: 70px;
                width: 70px;
            }
            
            .btn-gold, .btn-outline-gold {
                width: 100%;
                margin-bottom: 10px;
            }
            
            .product-titleview {
                font-size: 24px;
            }
        }
        
        @media (max-width: 576px) {
            .product-image-main {
                height: 300px;
            }
            
            .thumbnail {
                height: 60px;
                width: 60px;
            }
            
            .thumbnail-gallery {
                flex-wrap: wrap;
            }
        }

        /* blog section */
        /* Blog */
.blog-card {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
 /* Header */
 .blog-header {
  padding: 80px 0 40px;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin-bottom: 60px;
}

.blog-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  color: var(--gray);
  font-size: 0.95rem;
}
/* Main Content */
.blog-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 50px;
  margin-bottom: 80px;
}

@media (max-width: 992px) {
  .blog-content {
      grid-template-columns: 1fr;
  }
}
.input-group .btn {
  height: 50px;
}
.input-group.input-group-sm.me-2 {
  height: 50px;
}
.input-group.input-group-sm.me-3 {
  height: 50px;
}
        /* blog section end */
        /* blog section */

        /* in home page last section insta image */
        .header{
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
    
           .tagline {
            font-size: 0.9rem;
            color: var(--light-text);
            font-style: italic;
        }

        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
           
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            cursor: pointer;
            aspect-ratio: 1 / 1;
        }

        .gallery-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: fill;
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-image {
            transform: scale(1.05);
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item:hover .overlay {
            opacity: 1;
        }

        .instagram-icon {
            font-size: 1.5rem;
            color: white;
            background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
            border-radius: 8px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: scale(0.8);
            transition: var(--transition);
        }

        .gallery-item:hover .instagram-icon {
            transform: scale(1);
        }

        /* Modal Styles */
        .modal-content {
            border-radius: var(--border-radius);
            border: none;
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }

        .modal-header {
            border-bottom: none;
            padding: 0.8rem 1.2rem 0;
        }

        .btn-close {
            font-size: 14px !important;
        }

        .modal-body {
            padding: 0;
        }

        .modal-container {
            display: flex;
            min-height: 450px;
        }

        .modal-image {
            flex: 1;
            background-color: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
        }

        .modal-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 6px;
        }

        .modal-details {
            flex: 1;
            padding: 1.8rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: white;
        }

        .modal-details h2 {
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: var(--dark-text);
            font-size: 1.4rem;
        }

        .modal-details p {
            color: var(--light-text);
            margin-bottom: 1.2rem;
            line-height: 1.5;
            font-size: 0.9rem;
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 1.2rem;
        }

        .tag {
            background-color: rgba(206, 138, 49, 0.1);
            color: var(--primary-color);
            padding: 4px 10px;
            border-radius: 16px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .hashtags {
            margin-top: 1.2rem;
            color: var(--light-text);
            font-size: 0.85rem;
        }

        .hashtags a {
            color: #385898;
            text-decoration: none;
            margin-right: 8px;
        }

        .date {
            margin-top: 1.2rem;
            font-size: 0.85rem;
            color: var(--light-text);
            border-top: 1px solid #eee;
            padding-top: 0.8rem;
        }

        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .gallery-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .modal-container {
                flex-direction: column;
            }
            
            .modal-image {
                padding: 1rem;
                min-height: 250px;
            }
            
            .modal-details {
                padding: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }  
           
        }

     /* coupon pop up show style */
.offer-bar {
  background: linear-gradient(
    90deg,
    #d4af37 0%,
    #cf9f00 30%,
    #ffeb99 50%,
    #cf9f00 70%,
    #d4af37 100%
  );
  background-size: 200% auto;
  animation: shineMove 4s linear infinite;
  color: #fff;
  z-index: 1100;
  transition: transform 450ms cubic-bezier(.2,.9,.3,1);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Animation keyframes */
@keyframes shineMove {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

/* visible state */
.offer-bar.show {
  transform: translateY(0) !important;
}

code {
  color: rgb(255, 0, 0) !important;
  font-weight: 600 !important;
  font-size: 20px !important;
}

/* smaller screens adjust */
@media (max-width: 576px) {
  .offer-left { 
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem; 
  }
  .offer-actions { 
    gap: .25rem; 
  }
  #offer-text code { 
    font-size: .9rem; 
    padding: .15rem .4rem; 
    background: rgba(255,255,255,0.12);
    border-radius: 4px;
  }
}

.form-select-sm {
  background: white;
}