/* ==========================================
   HREEVA JEWELS - Main Stylesheet
   Design: Jewelry E-commerce Premium Theme
   ========================================== */

/* === CSS Variables / Design Tokens === */
:root {
    --primary-brown: #000000;
    --primary-gold: #2c2c2c;
    --light-gold: #E8D5A3;
    --cream: #FAF6ED;
    --cream-light: #FDF9F0;
    --dark: #1A1A1A;
    --dark-card: #2a2a2a;
    --dark-overlay: rgba(0, 0, 0, 0.3);
    --text-dark: #111111;
    --text-medium: #6B6B6B;
    --text-light: #999999;
    --white: #ffffff;
    --off-white: #F8F8F8;
    --border-light: #E8E8E8;
    --green-accent: #2E7D32;
    --red-accent: #C62828;
    --shadow-sm: 0 8px 28px -6px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 20px 35px -10px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.4s ease;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-script: 'Great Vibes', cursive;
}

/* === Reset & Base === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: clip;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: clip;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Announcement Bar === */
.announcement-bar {
    background: linear-gradient(135deg, var(--primary-brown), var(--primary-gold));
    color: var(--white);
    text-align: center;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.announcement-bar p {
    margin: 0;
}

/* === Header === */
.header {
    background: var(--white);
    padding: 0 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 80px;
    width: auto;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    padding: 10px 22px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 25px;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--primary-brown);
}

.nav-btn {
    border-radius: 25px;
    font-size: 0.8rem;
}

.nav-btn.gold-btn {
    background: var(--primary-gold);
    color: var(--white);
}

.nav-btn.gold-btn:hover {
    background: var(--primary-brown);
    color: var(--white);
}

.nav-btn.dark-btn {
    background: var(--dark);
    color: var(--white);
}

.nav-btn.dark-btn:hover {
    background: #333;
    color: var(--white);
}

.nav-link i {
    font-size: 0.6rem;
    margin-left: 4px;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon-link {
    color: var(--text-dark);
    font-size: 1.1rem;
    position: relative;
    transition: var(--transition);
}

.icon-link:hover {
    color: var(--primary-gold);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--primary-gold);
    color: var(--white);
    font-size: 0.6rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* === Header Favourites Icon === */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fav-toggle-btn {
    position: relative;
    background: none;
    border: 1.5px solid #000000;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fav-toggle-btn:hover {
    background: #f9deb3;
    border: 1.5px solid #f9deb3;

    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(200, 169, 126, 0.4);
}

.fav-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* === Favourites Overlay === */
.fav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9000;
    backdrop-filter: blur(2px);
    transition: opacity 0.3s ease;
}

.fav-overlay.active {
    display: block;
}

/* === Favourites Slide Panel === */
.fav-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    max-width: 95vw;
    height: 100vh;
    background: #fff;
    z-index: 9001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

.fav-panel.open {
    right: 0;
}

.fav-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f0e8df;
    background: linear-gradient(135deg, #f9f4ef, #fff);
}

.fav-panel-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #5c3d1e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fav-panel-header h3 i {
    color: #e74c3c;
}

.fav-close-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #888;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.2s;
}

.fav-close-btn:hover {
    background: #f5f5f5;
    color: #333;
}

.fav-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

/* Empty state */
.fav-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 250px;
    gap: 10px;
    color: #bbb;
    text-align: center;
}

.fav-empty i {
    font-size: 3rem;
    color: #e8d5c5;
}

.fav-empty p {
    font-size: 1.1rem;
    color: #888;
    font-weight: 600;
    margin: 0;
}

.fav-empty span {
    font-size: 0.85rem;
    color: #bbb;
}

/* Favourite Items List */
.fav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 8px;
    border-bottom: 1px solid #f5ede4;
    animation: fadeInUp 0.3s ease;
}

.fav-item-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5ede4;
    flex-shrink: 0;
    border: 1px solid #e8d5c5;
}

.fav-item-info {
    flex: 1;
}

.fav-item-category {
    font-size: 0.7rem;
    color: #c8a97e;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.fav-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: #3d2b1f;
    font-weight: 600;
    margin: 2px 0;
}

.fav-item-price {
    font-size: 0.85rem;
    color: #7a5c3a;
    font-weight: 500;
}

.fav-item-remove {
    background: none;
    border: none;
    color: #ccc;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.2s;
    padding: 5px;
}

.fav-item-remove:hover {
    color: #e74c3c;
}

/* === Favourites Sidebar Footer === */
.fav-panel-footer {
    padding: 16px 20px;
    border-top: 1px solid #f0e8df;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whatsapp-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25d366;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    width: 100%;
}

.whatsapp-chat-btn:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
}

.whatsapp-chat-btn:active {
    transform: translateY(0);
}

.whatsapp-chat-btn i {
    font-size: 1.25rem;
}

/* === Metal Rates Bar === */
.metal-rates {
    background: rgb(0, 0, 0);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metal-rates-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.metal-rates-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 0 30px;
}

.metal-rates-title {
    font-size: 1.3rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin: 0;
}

.rates-exact-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.metal-rates-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.metal-rates-updated {
    font-size: 0.75rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.metal-rates-updated i {
    font-size: 0.7rem;
}

.metal-rates-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 0 14px;
    flex-wrap: wrap;
}

.rate-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 30px;
    color: var(--black);
    font-weight: 500;
    transition: var(--transition);
    cursor: default;
}

.rate-pill:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.rate-label {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.95;
}

.rate-price {
    font-size: 1.25rem;
    font-weight: 700;
}

.rate-price small {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.8;
}

.rate-pill.gold-24k {
    background: #f9deb3;
}

.rate-pill.gold-22k {
    background: #f9deb3;
}

.rate-pill.gold-18k {
    background: #f9deb3;
}

.rate-pill.gold-14k {
    background: #f9deb3;
}

.rate-pill.gold-9k {
    background: #f9deb3;
}

.rate-pill.silver {
    background: #f9deb3;
}

/* === Brand Marquee Ticker === */
.brand-marquee {
    background: #202020;
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.marquee-content span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.marquee-dot {
    margin: 0 20px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* === Hero Slider === */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: var(--cream);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    width: 100%;
    height: 100%;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}



.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: scale(1.2);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-dark);
    z-index: 10;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.slider-btn:hover {
    background: var(--primary-gold);
    color: var(--white);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* === Section Headers === */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;

}

.script-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-family: 'Cormorant Garamond', serif;
    color: #111;
    margin-bottom: 10px;
    font-weight: 400;
}

.title-underline {
    width: 80px;
    height: 2px;
    background: var(--primary-gold);
    margin: 0 auto;
}

/* === Shop by Recipient === */
.shop-recipient {
    padding: 60px 0;
    background: var(--cream-light);
    border-radius: 50px;
}

.recipient-title-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.recipient-title {
    font-family: var(--font-heading);
    text-align: center;
    border: solid 1px;
    border-radius: 3rem;
    border-block-color: #a5a3a3;
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 500;
    margin-bottom: 60px;
    color: #111;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* .recipient-title:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(198, 161, 91, 0.3);
    background: linear-gradient(135deg, #d4af37, #f3e5ab, #c6a15b, #f3e5ab, #d4af37);
    background: linear-gradient(135deg, #000000, #474747, #939393, #4f4f4f, #63625e);
    border: 1px solid transparent;
    color: #2B1B12;
} */

.recipient-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1500px;
    margin: 0 auto;
}

.recipient-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.recipient-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.recipient-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* === Bestseller Section === */
.bestseller {
    padding: 70px 0;
    background: var(--white);
}

.bestseller .container {
    max-width: 1600px;
    /* Wider container for less left/right space */
    width: 95%;
}

.bestseller-header {
    text-align: center;
    margin-bottom: 40px;
}

.bestseller-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: #111;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 60px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 87px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.bestseller-title:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(198, 161, 91, 0.3);
    /* background: linear-gradient(135deg, #d4af37, #f3e5ab, #c6a15b, #f3e5ab, #d4af37); */
    background: linear-gradient(135deg, #000000, #474747, #939393, #4f4f4f, #63625e);
    border: 1px solid transparent;
    color: #ffffff;
}

@media (max-width: 768px) {
    .bestseller-title {
        font-size: 1.6rem;
        padding: 10px 30px;
    }
}

.bestseller-underline {
    width: 60px;
    height: 2px;
    background: var(--primary-gold);
    margin: 15px auto;
}

.bestseller-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-medium);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.bestseller-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bestseller-carousel {
    display: flex;
    flex: 1;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
}

.bestseller-carousel::-webkit-scrollbar {
    display: none;
}

.bs-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid #ccc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #888;
    z-index: 10;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin: 0 15px;
}

.bs-arrow:hover {
    background: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
    box-shadow: 0 4px 15px rgba(198, 161, 91, 0.4);
}

.bs-prev {
    left: -25px;
}

.bs-next {
    right: -25px;
}

.bs-progress-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.bs-progress-track {
    width: 250px;
    height: 2px;
    background: #e0e0e0;
    position: relative;
    border-radius: 2px;
}

.bs-progress-thumb {
    height: 100%;
    background: var(--primary-gold);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 2px;
    transition: left 0.1s ease-out;
}

.bs-card {
    min-width: calc(20% - 16px);
    max-width: calc(20% - 16px);
    flex-shrink: 0;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    scroll-snap-align: start;
}

.bs-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.bs-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin: 8px;
    width: calc(100% - 16px);
    position: relative;
}

.bs-img-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.bs-like-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
    transform: translateY(-10px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.bs-card:hover .bs-like-btn,
.collection-card:hover .bs-like-btn {
    opacity: 1;
    transform: translateY(0);
}

.bs-like-btn:hover {
    color: #e74c3c;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.bs-like-btn.liked {
    color: #e74c3c;
    opacity: 1;
    transform: translateY(0);
}

.bs-like-btn.liked i {
    font-weight: 900;
    /* Solid heart when liked for FontAwesome */
}

.bs-card:hover .bs-img-placeholder {
    transform: scale(1.05);
}

.bs-img-1 {
    background: linear-gradient(135deg, #e8d8c8, #d8c8b8, #c8b8a8);
}

.bs-img-2 {
    background: linear-gradient(135deg, #f0e0d0, #e0d0c0, #d0c0b0);
}

.bs-img-3 {
    background: linear-gradient(135deg, #e0d0c0, #d0c0b0, #c0b0a0);
}

.bs-img-4 {
    background: linear-gradient(135deg, #d8c8b8, #c8b8a8, #b8a898);
}

.bs-img-5 {
    background: linear-gradient(135deg, #e8ddd0, #d8ccc0, #c8bcb0);
}

.bs-info {
    padding: 14px 16px;
    text-align: center;
}

.bs-category {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.bs-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: 2.6em;
}

.bs-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.bs-inr {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-light);
}

.bs-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 24px;
    border: 1.5px solid var(--primary-gold);
    border-radius: 25px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    font-family: var(--font-body);
}

.bs-add-btn:hover {
    background: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
}

.bs-add-btn i {
    font-size: 0.75rem;
}

/* === Design Your Dream Jewelry (Redesigned Split Layout) === */
.dream-jewelry-split {
    margin: 60px 0;
    width: 100%;
    background: #000;
}

.dream-split-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
}

.dream-split-visual {
    flex: 1 1 50%;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.dream-split-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.dream-visual-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 100%); */
    display: flex;
    align-items: flex-end;
    padding: 60px;
}

.visual-quote {
    font-family: 'Cormorant Garamond', serif;
    color: #d4af37;
    font-size: 3rem;
    font-style: italic;
    font-weight: 400;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.dream-split-content {
    flex: 1 1 50%;
    background: #0f0f13;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    position: relative;
}

.dream-split-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 50%, rgba(212, 175, 55, 0.05) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.dream-content-inner {
    max-width: 550px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.dream-subtitle {
    color: #d4af37;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 25px;
    font-weight: 500;
}

.dream-title {
    font-family: 'Cormorant Garamond', serif;
    color: #fff;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 500;
}

.dream-desc {
    color: #a0a0a0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: 300;
}

.dream-whatsapp-btn-new {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    padding: 18px 40px;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 60px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.dream-whatsapp-btn-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    color: white;
}

.dream-whatsapp-btn-new i {
    font-size: 1.6rem;
}

.dream-tags-new {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 35px;
}

.dream-tags-new span {
    color: #777;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

.dream-tags-new span i {
    color: #d4af37;
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .dream-split-container {
        flex-direction: column;
    }
    .dream-split-visual,
    .dream-split-content {
        flex: 1 1 100%;
        width: 100%;
    }
    .dream-visual-overlay {
        padding: 40px 20px;
    }
    .visual-quote {
        font-size: 2.2rem;
    }
    .dream-split-content {
        padding: 60px 20px;
    }
    .dream-title {
        font-size: 2.8rem;
    }
}




/* === Testimonials / Kind Words === */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    /* Very light beige from the screenshot */
    text-align: center;
}

.testimonial-carousel-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto 30px;
}

.testimonial-carousel {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    padding: 20px 10px;
    flex: 1;
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    min-width: calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    scroll-snap-align: start;
    position: relative;
    text-align: left;
    flex-shrink: 0;
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2.5rem;
    color: #f2e9d8;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    min-height: 100px;
    
    /* Truncation for max 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-text {
    -webkit-line-clamp: unset;
}

.testimonial-stars {
    margin-bottom: 15px;
    display: flex;
    gap: 4px;
}

.testimonial-stars i {
    color: #d4af37;
    font-size: 0.85rem;
}

.author-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #2b1b12;
    margin-bottom: 8px;
    font-weight: 600;
}

.author-title {
    font-size: 0.75rem;
    color: #a0a0a0;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
}

.testi-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 1px solid #eaeaea;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #555;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    flex-shrink: 0;
}

.testi-arrow:hover {
    background: #fafafa;
    border-color: #d4af37;
    color: #d4af37;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
    margin-top: 10px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s;
}

.testi-dot.active {
    width: 25px;
    border-radius: 10px;
    background: #000000;
}

/* === Instagram Section === */
.instagram-section {
    padding: 70px 0;
    /* background: var(--cream-light); */
}

.insta-title {
    font-family: var(--font-script);
    font-size: 2.8rem;
    color: var(--text-dark);
}

.insta-highlight {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--red-accent);
    position: relative;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    width: min(100%, 1120px);
    margin: 0 auto 40px;
}

.insta-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/5;
    background: #f6efe8;
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
}

.insta-img {
    width: 100%;
    height: 100%;
    background-color: #f6efe8;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.insta-card:hover .insta-img {
    transform: scale(1.1);
}

.insta-img-1 {
    background: linear-gradient(135deg, #f5dcc8, #e8c8b0);
}

.insta-img-2 {
    background: linear-gradient(135deg, #d4c0a8, #c8b498);
}

.insta-img-3 {
    background: linear-gradient(135deg, #e8d5c0, #dcc8b0);
}

.insta-img-4 {
    background: linear-gradient(135deg, #dcd0c0, #d0c4b4);
}

.insta-img-5 {
    background: linear-gradient(135deg, #f0e0d0, #e4d4c4);
}

.insta-img-6 {
    background: linear-gradient(135deg, #e4d8c8, #d8ccbc);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.insta-card:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay i {
    font-size: 2rem;
    color: var(--white);
}

.insta-follow {
    text-align: center;
}

.insta-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #111;
    color: var(--white);
    padding: 16px 40px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.insta-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* === Footer === */
@keyframes footerGradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.footer {
    background: linear-gradient(-45deg, var(--dark), #2a2a2a, #0a0a0a, #1f1f1f);
    background-size: 400% 400%;
    animation: footerGradientBG 15s ease infinite;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

/* Premium Golden Sparkle Background */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cpolygon points='20,27.5 22.5,30 20,32.5 17.5,30' fill='%23f9de96' /%3E%3Cpolygon points='80,117 83,120 80,123 77,120' fill='%23ffffff' /%3E%3Cpolygon points='140,58 142,60 140,62 138,60' fill='%23d4af37' /%3E%3Cpolygon points='190,147.5 192.5,150 190,152.5 187.5,150' fill='%23f9de96' /%3E%3Cpolygon points='240,87.5 242.5,90 240,92.5 237.5,90' fill='%23ffffff' /%3E%3Cpolygon points='280,216.5 283.5,220 280,223.5 276.5,220' fill='%23d4af37' /%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 300px 300px;
    animation: goldDustAnim 30s linear infinite;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

@keyframes goldDustAnim {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -300px -300px;
    }
}

.footer .container {
    max-width: 1600px;
    width: 95%;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 0.75fr 1fr 1.45fr;
    gap: 34px;
    align-items: start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 132px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 15px;
    margin-left: 15px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.4s, color 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.social-link:hover {
    background: #f9de96;
    border-color: #f9de96;
    color: #111111;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(249, 222, 150, 0.4);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
    margin-top: 40px;
    position: relative;
    padding-bottom: 6px;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background: #f9de96;
    transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-col:hover h4::after {
    width: 100%;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: #f9de96;
    padding-left: 5px;
}

.contact-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info p i {
    color: #f9deb3;
    font-size: 0.9rem;
    width: 20px;
}

.footer-map-col h4 {
    margin-bottom: 16px;
}

.footer-map-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16/11;
    min-height: 210px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.footer-map-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(0.88) contrast(1.04);
}

.footer-direction-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 14px;
    min-height: 42px;
    padding: 0 20px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 999px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: var(--transition);
    animation: footerBtnGlow 2.5s infinite;
}

@keyframes footerBtnGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.footer-direction-btn:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(212, 175, 55, 0.18);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.developer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dev-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.dev-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 30px;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

.dev-badge i {
    font-size: 0.95rem;
}

.dev-badge:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
}

.heart-icon {
    font-size: 0.8rem;
    color: #e91e63;
}

.payment-icons i {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.payment-icons i:hover {
    color: var(--white);
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .signature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .range-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }

    .footer-map-col {
        grid-column: 1 / -1;
    }

    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .announcement-bar {
        font-size: 0.7rem;
        padding: 6px 10px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 5px;
    }

    .nav-link {
        display: block;
        text-align: center;
    }

    .header-container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    .mobile-toggle {
        display: block;
        grid-column: 1;
        justify-self: start;
        order: 1;
    }

    .logo {
        grid-column: 2;
        justify-self: center;
        order: 2;
    }

    .logo a {
        display: block;
    }

    .logo img {
        height: 55px;
    }

    .header-actions {
        grid-column: 3;
        justify-self: end;
        order: 3;
    }

    /* Metal Rates Mobile */
    .metal-rates-container {
        padding: 0 15px;
    }

    .metal-rates-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 15px 0 10px;
    }

    .metal-rates-left {
        gap: 6px;
    }

    .metal-rates-title {
        font-size: 1.1rem;
    }

    .rates-exact-icon {
        width: 22px;
        height: 22px;
    }

    .metal-rates-pills {
        gap: 10px;
        padding: 0 0 15px;
        justify-content: center;
    }

    .rate-pill {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .rate-label {
        font-size: 0.75rem;
    }

    .rate-price {
        font-size: 0.85rem;
    }

    /* Marquee Mobile */
    .brand-marquee {
        padding: 8px 0;
    }

    .marquee-content span {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    .marquee-dot {
        margin: 0 12px;
    }

    /* Hero Slider Mobile */
    .hero-slider {
        height: 55vw;
    }
    .hero-slider .slide-image {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    /* Recipient Cards Mobile */
    .shop-recipient {
        padding: 40px 0;
        border-radius: 20px;
    }

    .recipient-title {
        font-size: clamp(18px, 4vw, 28px);
        padding: 10px 30px;
        margin-bottom: 30px;
    }

    .recipient-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-img {
        height: 200px;
    }

    .dream-right {
        grid-template-columns: 1fr 1fr;
    }

    .signature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .signature-img {
        height: 220px;
    }

    .range-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-map-col {
        grid-column: 1 / -1;
    }

    .footer-map-wrap {
        aspect-ratio: 16/9;
        min-height: 240px;
    }

    .script-title {
        font-size: 2.2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 280px;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-img {
        height: 160px;
    }

    .signature-grid {
        grid-template-columns: 1fr;
    }

    .range-grid {
        grid-template-columns: 1fr 1fr;
    }

    .range-img {
        height: 160px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dream-right {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .footer-col:nth-child(1),
    .footer-col:nth-child(4),
    .footer-map-col {
        grid-column: 1 / -1;
    }

    .footer-col {
        padding-right: 0;
    }

    .footer-col h4 {
        white-space: nowrap;
    }

    .footer-map-col {
        grid-column: 1 / -1;
    }

    .footer-map-wrap {
        min-height: 220px;
        overflow: hidden !important;
        width: 100%;
    }

    .logo img {
        height: 70px;
    }

    .footer-logo img {
        height: auto;
        max-height: 133px;
        margin-left: 0;
        max-width: 100%;
        margin-left: 30px;
        margin-top: -55px;
    }

    .footer-desc {

        margin-right: 0px;
        padding-right: 8px !important;
        font-size: 0.8rem;
        align-items: center;
    }

    .script-title {
        font-size: 1.8rem;
    }

    /* Metal Rates - small mobile */
    .metal-rates-header {
        padding: 12px 0 8px;
        align-items: center;
    }

    .metal-rates-title {
        font-size: 0.95rem;
    }

    .metal-rates-pills {
        gap: 8px;
    }

    .rate-pill {
        padding: 7px 14px;
    }

    .rate-label {
        font-size: 0.7rem;
    }

    .rate-price {
        font-size: 0.8rem;
    }

    .recipient-cards {
        max-width: 100%;
    }

    .header-container {
        padding: 10px 15px;
    }
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.section-header,
.product-card,
.reception-card,
.signature-card,
.range-card,
.testimonial-card,
.insta-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* === Scroll Reveal Animation Classes === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Floating Social Icons === */
.floating-social {
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.float-icon {
    width: 48px;
    height: 48px;
    background-color: #2a2a2a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.float-icon.whatsapp {
    color: #25D366;
    box-shadow: -3px 0px 0px 0px #25D366;
}

.float-icon.instagram {
    color: #E1306C;
    box-shadow: -3px 0px 0px 0px #E1306C;
}

.float-icon.facebook {
    color: #1877F2;
    box-shadow: -3px 0px 0px 0px #1877F2;
}

.float-icon.phone {
    color: #00B4D8;
    box-shadow: -3px 0px 0px 0px #00B4D8;
}

.float-icon:hover {
    transform: scale(1.15);
    color: #fff;
    box-shadow: -3px 0px 0px 0px #fff;
    border-color: transparent;
}

.float-icon.whatsapp:hover {
    background-color: #25D366;
}

.float-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.float-icon.facebook:hover {
    background-color: #1877F2;
}

.float-icon.phone:hover {
    background-color: #00B4D8;
}

/* Make it slightly smaller on mobile */
@media (max-width: 768px) {
    .floating-social {
        right: 15px;
    }

    .float-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
}

/* Mens Hero Section Styles */
.mens-hero {
    position: relative;
    width: 100%;
    height: calc(80vh - 110px);
    /* Adjust based on header height */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.mens-hero-content {
    z-index: 2;
    padding: 0 20px;
    transform: translateY(-20px);
}

.mens-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.mens-hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.mens-hero-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid var(--white);
    border-radius: 30px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    cursor: pointer;
    backdrop-filter: blur(2px);
}

.mens-hero-btn:hover {
    background: var(--white);
    color: var(--text-dark);
}

/* Navigation Arrows */
.mens-hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
}

.mens-hero-prev {
    left: 40px;
    background: rgba(255, 255, 255, 0.4);
}

.mens-hero-prev:hover {
    background: rgba(255, 255, 255, 0.6);
}

.mens-hero-next {
    right: 40px;
    background: var(--primary-gold);
}

.mens-hero-next:hover {
    background: var(--primary-brown);
}

/* Dots */
.mens-hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.mens-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.mens-hero-dot.active {
    background: var(--primary-gold);
    transform: scale(1.3);
}

/* Mens Collection Section */
.mens-collection {
    padding: 80px 0;
    background: #ffffff;
}

.collection-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.collection-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    color: #111;
    margin-bottom: 15px;
}

.collection-header p {
    color: var(--text-medium);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.collection-layout {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    align-items: flex-start;
}

/* Sidebar */
.sidebar-filters {
    width: 260px;
    flex-shrink: 0;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.filter-header h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: #111;
}

.clear-all {
    font-size: 0.8rem;
    color: var(--text-medium);
    text-decoration: underline;
    cursor: pointer;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: var(--text-medium);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-gold);
    cursor: pointer;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.price-inputs input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
}

.price-inputs input::placeholder {
    color: #ccc;
}

.apply-btn {
    width: 100%;
    padding: 12px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.apply-btn:hover {
    background: var(--primary-gold);
}

/* Product Grid */
.product-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

.collection-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #f8f8f8;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card:hover .card-img-wrap img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.badge-silver {
    background: rgba(255, 255, 255, 0.85);
    color: #555;
    backdrop-filter: blur(4px);
}

.badge-gold {
    background: rgba(198, 161, 91, 0.9);
    color: #fff;
    backdrop-filter: blur(4px);
}

.card-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-category {
    font-size: 0.7rem;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
}

h4.card-title:hover {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #f3c985;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 25px;
    margin-top: auto;
}

.card-price span {
    font-size: 0.75rem;
    font-weight: 400;
    color: #888;
    margin-left: 4px;
}

.card-actions {
    display: flex;
    gap: 10px;
}

.btn-details {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1.2;
    white-space: nowrap;
}

.btn-details:hover {
    background: var(--primary-gold);
}

.btn-whatsapp {
    flex: 1;
    background: #25D366;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-whatsapp:hover {
    background: #1eb956;
}

@media (max-width: 992px) {
    .collection-layout {
        flex-direction: column;
    }

    .sidebar-filters {
        width: 100%;
    }
}

/* === Responsive adjustments for Bestseller Carousel === */
@media (max-width: 1200px) {
    .bs-card {
        min-width: calc(25% - 16px);
        max-width: calc(25% - 16px);
    }
}

@media (max-width: 992px) {
    .bestseller-carousel-wrap {
        display: block;
    }

    .bs-arrow {
        position: absolute;
        top: 150px;
        /* Centered over the 300px tall image */
        transform: translateY(-50%);
        margin: 0;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border: none;
    }

    .bs-prev {
        left: -10px;
    }

    .bs-next {
        right: -10px;
    }

    .bs-card {
        min-width: calc(40% - 16px);
        max-width: calc(40% - 16px);
    }
}

@media (max-width: 768px) {
    .bs-card {
        min-width: calc(100% - 16px);
        max-width: calc(100% - 16px);
    }

    .testimonial-card {
        min-width: calc(100% - 20px);
        max-width: calc(100% - 20px);
    }

    .dream-visuals {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .bs-card {
        min-width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .bs-arrow {
        top: 150px;
        width: 40px;
        height: 40px;
    }

    .bs-prev {
        left: 5px;
    }

    .bs-next {
        right: 5px;
    }

    .bs-info {
        padding: 15px 12px;
    }

    .bs-add-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 0;
    }

    .testimonial-carousel-wrap {
        display: block;
    }

    .testi-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        margin: 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    #testiPrev {
        left: 0;
    }

    #testiNext {
        right: 0;
    }

    .testimonial-card {
        min-width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .dream-visual-box {
        height: 300px;
        /* Make the images taller on mobile */
    }
}

/* === Preloader === */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    animation: forceHide 0.5s forwards 1.5s; /* Failsafe for Lighthouse */
}

@keyframes forceHide {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

.loader-content {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
}

.loader-ring:nth-child(1) {
    border-top-color: var(--primary-gold);
    border-right-color: rgba(0, 0, 0, 0.2);
    animation: spin1 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.loader-ring:nth-child(2) {
    width: 75%;
    height: 75%;
    border-bottom-color: var(--primary-gold);
    border-left-color: rgba(19, 19, 19, 0.2);
    animation: spin2 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.loader-logo {
    width: 90px;
    height: auto;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin2 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* === About Hero Section === */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-image: url('image/about.png');
    /* Beautiful jewelry background */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay for text readability */
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 0 20px;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.about-hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.2rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
}

/* === About Content Section === */
.about-content {
    padding: 100px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text-content .title-underline {
    margin: 0 0 30px 0;
    /* Left aligned underline */
}

.about-text-paragraphs p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-mission-vision {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.mv-box {
    flex: 1;
    padding: 30px;
    background: #fdfbf7;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.mv-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
}

.mv-box i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.mv-box h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 12px;
}

.mv-box p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.about-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img-main {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.about-img-wrapper:hover .about-img-main {
    transform: scale(1.05);
}

.about-img-badge {
    position: absolute;
    bottom: -1px;
    right: -1px;
    background: var(--primary-gold);
    color: var(--white);
    padding: 30px 40px;
    border-radius: 40px 0 20px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-img-badge .years {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 5px;
}

.about-img-badge .text {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive About Page */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text-content .script-title {
        text-align: center;
    }

    .about-text-content .title-underline {
        margin: 0 auto 30px auto;
    }

    .about-text-paragraphs p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-mission-vision {
        flex-direction: column;
        gap: 20px;
    }
}

/* === About Gallery Section === */
.about-gallery {
    padding: 80px 0;
    background: #fdfbf7;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header p {
    color: #666;
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 300;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-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: opacity 0.4s ease;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Masonry Layout Settings */
.item-1 {
    grid-column: span 2;
    grid-row: span 2;
}

.item-2 {
    grid-column: span 1;
    grid-row: span 1;
}

.item-3 {
    grid-column: span 1;
    grid-row: span 2;
}

.item-4 {
    grid-column: span 1;
    grid-row: span 1;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        height: 300px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }
}

/* === Gallery Lightbox === */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary-gold);
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media only screen and (max-width: 700px) {
    .lightbox-content {
        width: 100%;
    }

    .lightbox-close {
        top: 15px;
        right: 25px;
    }
}

/* === About Services Section === */
.about-services {
    padding: 80px 0;
    background: #111111;
    /* Dark background to make animation pop */
    position: relative;
    overflow: hidden;
}

.service-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.about-services .container {
    position: relative;
    z-index: 2;
}

/* Background Animated Orbs and Sparkles */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: floatOrb 10s infinite alternate ease-in-out;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(212, 175, 55, 0.5);
    /* Stronger gold */
    top: -50px;
    left: -100px;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(248, 233, 161, 0.5);
    /* Stronger bright gold */
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
    animation-duration: 12s;
}

.sparkle {
    position: absolute;
    color: rgba(212, 175, 55, 0.8);
    /* Brighter sparkles */
    animation: twinkleFloat 8s infinite linear;
}

.sp-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    font-size: 1.2rem;
}

.sp-2 {
    top: 60%;
    left: 85%;
    animation-delay: 1.5s;
    font-size: 1.8rem;
}

.sp-3 {
    top: 35%;
    left: 75%;
    animation-delay: 3s;
    font-size: 1.1rem;
}

.sp-4 {
    top: 80%;
    left: 20%;
    animation-delay: 2s;
    font-size: 1.5rem;
}

.sp-5 {
    top: 25%;
    left: 50%;
    animation-delay: 4.5s;
    font-size: 1.3rem;
}

.sp-6 {
    top: 5%;
    left: 80%;
    animation-delay: 0.5s;
    font-size: 1.6rem;
}

.sp-7 {
    top: 90%;
    left: 60%;
    animation-delay: 3.5s;
    font-size: 1rem;
}

.sp-8 {
    top: 45%;
    left: 5%;
    animation-delay: 2.5s;
    font-size: 1.4rem;
}

.sp-9 {
    top: 75%;
    left: 40%;
    animation-delay: 5s;
    font-size: 1.2rem;
}

.sp-10 {
    top: 10%;
    left: 35%;
    animation-delay: 1s;
    font-size: 1.7rem;
}

.sp-11 {
    top: 50%;
    left: 95%;
    animation-delay: 4s;
    font-size: 1.3rem;
}

.sp-12 {
    top: 85%;
    left: 90%;
    animation-delay: 6s;
    font-size: 1.5rem;
}

.sp-13 {
    top: 30%;
    left: 25%;
    animation-delay: 2.2s;
    font-size: 1.1rem;
}

.sp-14 {
    top: 65%;
    left: 15%;
    animation-delay: 5.5s;
    font-size: 1.6rem;
}

.sp-15 {
    top: 55%;
    left: 65%;
    animation-delay: 3.8s;
    font-size: 1.4rem;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.2);
    }
}

@keyframes twinkleFloat {
    0% {
        transform: translateY(0) rotate(0deg) scale(0.5);
        opacity: 0;
    }

    20% {
        opacity: 1;
        transform: translateY(-20px) rotate(72deg) scale(1);
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg) scale(0.5);
        opacity: 0;
    }
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    color: #ffffff;
    /* White title for dark background */
}

.services-header p {
    color: #cccccc;
    /* Light gray for dark background */
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    /* Glass effect */
    backdrop-filter: blur(10px);
    padding: 45px 35px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #ad8f2f;
    transition: height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    opacity: 0.03;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border-color: #a1852d;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: #a1852d;
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-gold);
    transition: color 0.4s ease;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* === Product Details Section === */
.product-details-section {
    padding-bottom: 80px;
    padding-top: 130px;

    background: #ffffff;
}

.product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    display: flex;
    flex-direction: column;
}

.main-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    transition: 0.3s;
    font-size: 0.8rem;
}

.img-nav:hover {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.prev-img {
    left: 15px;
}

.next-img {
    right: 15px;
}

.thumbnail-list {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.thumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

.thumb.active {
    border-color: #c9a565;
    /* golden border */
}

/* Right Info */
.product-info-minimal {
    padding-top: 20px;
}

.title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.title-row .product-title {
    /* font-family: var(--font-heading); */
    font-size: clamp(1.5rem, 6vw, 2.8rem);
    color: #222;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
}

.silver-badge {
    background: #f0f0f0;
    color: #666;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.product-info-minimal .product-price {
    /* font-family: var(--font-heading); */
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
}

.product-info-minimal .product-price span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
    margin-left: 5px;
}

.product-info-minimal .product-description {
    color: #777;
    font-size: 1rem;
    margin-bottom: 35px;
    font-weight: 300;
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 4;
}

.show-more-btn {
    background: none;
    border: none;
    color: #c8a97e;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-top: 8px;
    font-size: 0.9rem;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    color: #3d2b1f;
}

.size-section {
    margin-bottom: 35px;
}

.size-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.size-options {
    display: flex;
    gap: 10px;
}

.size-btn {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 6px;
    width: 45px;
    height: 35px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specs-box {
    background: #fafafa;
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 40px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
}

.spec-row:not(:last-child) {
    border-bottom: 1px dashed #e0e0e0;
}

.spec-row .spec-label {
    color: #888;
    font-size: 0.9rem;
}

.spec-row .spec-value {
    color: #222;
    font-size: 0.9rem;
    font-weight: 600;
}

.action-buttons-row {
    display: flex;
    gap: 15px;
}

.btn-whatsapp-order,
.btn-add-bag {
    flex: 1;
    padding: 16px 0;
    border-radius: 30px;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-whatsapp-order {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp-order:hover {
    background: #1eb956;
}

.btn-add-bag {
    background: #111;
    color: #fff;
}

.btn-add-bag:hover {
    background: #333;
}

@media (max-width: 992px) {
    .product-wrapper {
        grid-template-columns: 1fr;
    }
}

/* === You May Also Like Section === */
.also-like-section {
    padding: 0 0 80px 0;
    background: #ffffff;
}

.also-like-title-wrapper {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    border: 1px solid #555;
    border-radius: 50px;
    text-align: center;
    padding: 15px 0;
}

.also-like-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #444;
    font-weight: 400;
    margin: 0;
}

.also-like-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.also-like-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.also-like-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
    border-color: #e5e5e5;
}

.also-like-card .card-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.also-like-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.also-like-card:hover .card-img img {
    transform: scale(1.05);
}

.also-like-card .card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.also-like-card .card-category {
    font-size: 0.65rem;
    color: #999;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.also-like-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.3;
}

.also-like-card .card-price {
    font-size: 1.1rem;
    color: #c9a565;
    /* mustard gold */
    font-weight: 600;
    margin-bottom: 20px;
}

.also-like-card .card-link {
    font-size: 0.8rem;
    color: #222;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    transition: 0.3s;
}

.also-like-card .card-link:hover {
    color: #c9a565;
}

@media (max-width: 1024px) {
    .also-like-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .also-like-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Detailed Product Specifications Section --- */
.detailed-specs-section {
    padding: 30px 0;
}

.specs-box-container {
    background-color: #000000;
    border: 1px solid #222222;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.specs-header {
    background-color: #000000;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333333;
}

.specs-header.center-header {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 25px 30px;
}

.specs-header h3 {
    color: var(--light-gold);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.specs-badge {
    background-color: var(--light-gold);
    color: #000000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.specs-badge.outline {
    background-color: transparent;
    border: 1px solid var(--light-gold);
    color: var(--light-gold);
    margin-top: 10px;
}

.specs-body {
    padding: 30px;
    background-color: #000000;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.spec-item {
    background-color: #ffffff;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-item:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(232, 213, 163, 0.4);
    /* Subtle gold glow */
    z-index: 2;
    position: relative;
}

.spec-item.full-width {
    width: 100%;
    margin-bottom: 15px;

}

.spec-label {
    color: #888888;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-label i {
    font-size: 0.9rem;
    opacity: 0.8;
}

.spec-value {
    color: #000000;
    font-size: 0.9rem;
    font-weight: 700;
}

@media (max-width: 991px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }

    .specs-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Footer Heart Beat Animation */
.heart-icon {
    display: inline-block;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    15% {
        transform: scale(1.3);
    }
    30% {
        transform: scale(1);
    }
    45% {
        transform: scale(1.3);
    }
    60% {
        transform: scale(1);
    }
}
@media (max-width: 768px) {
    .mens-hero, .about-hero, .hero-slider {
        height: 55vw !important;
        min-height: auto !important;
    }
    .mens-hero .slide-image, .hero-slider .slide-image {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    .dream-whatsapp-btn-new {
        padding: 12px 20px;
        font-size: 0.95rem;
        margin-bottom: 40px;
        white-space: nowrap;
    }
    
    .dream-whatsapp-btn-new i {
        font-size: 1.3rem;
    }
}
