/* style.css - Complete Styling for Oorza Jewels Website */

/* ===== VARIABLES ===== */
:root {
    --primary-pink: #C5A059;
    --primary-pink-dark: #A68545;
    --primary-green: #1F6D5E;
    --primary-green-light: #86AF9B;
    --dark-color: #25282b;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --gray-text: #6c757d;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.1);
    --bg-color-alpha: rgba(197, 160, 89, 0.15);
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* ===== RESET & GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.5;
    background: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    margin-bottom: 60px;
}

.hero-slider {
    margin-top: 0;
    margin-bottom: 60px !important;
}


/* Hero Slider Image - forced height */
.hero-slider .carousel-item {
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slider picture {
    display: block;
    height: 100%;
    width: 100%;
}

.hero-slide-img,
.hero-slider .carousel-item img {
    height: 85vh !important;
    min-height: 500px !important;
    width: 100% !important;
    object-fit: cover !important;
    display: block !important;
}


.carousel-item {
    position: relative;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.25) 55%, transparent 100%);
    display: flex;
    align-items: center;
}

.hero-slide-content {
    padding: 0 60px;
    max-width: 560px;
}

.hero-slide-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.hero-slide-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-slide-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-slide-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-pink-dark));
    color: #fff;
    text-decoration: none;
    padding: 13px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 8px 24px var(--bg-color-alpha);
    transition: all 0.3s ease;
}

.hero-slide-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 32px var(--bg-color-alpha);
}

@media (max-width: 768px) {

    .hero-slide-img,
    .hero-slider .carousel-item img {
        height: 70vh !important;
        min-height: 350px !important;
    }

    .hero-slider .carousel-item,
    .hero-slider picture {
        height: 70vh;
        min-height: 350px;
    }

    .hero-slide-content {
        padding: 0 24px;
    }

    .hero-slide-title {
        font-size: 24px;
    }

    .hero-slide-sub {
        display: none;
    }

    .hero-slide-btn {
        padding: 10px 22px;
        font-size: 13px;
    }
}


/* ===== UTILITY CLASSES ===== */
.section-title {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-pink);
}

.section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

.btn-outline-primary {
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    background: transparent;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-primary:hover {
    background: var(--primary-pink);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 113, 139, 0.3);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-pink-dark));
    font-weight: 500;
    color: white;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    z-index: 1001;
}

.announcement-slider {
    display: flex;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.announcement-item {
    flex: 0 0 auto;
    padding: 0 30px;
    font-size: 14px;
}

.announcement-item a {
    color: white;
    text-decoration: none;
}

.announcement-item a:hover {
    text-decoration: underline;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== HEADER ===== */
.main-header {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 70px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.search-box {
    max-width: 500px;
    margin: 0 auto;
}

.search-box .input-group {
    border: 1px solid var(--border-color);
    border-radius: 30px;
    overflow: hidden;
    background: white;
}

.search-box input {
    border: none;
    padding: 12px 20px;
    font-size: 14px;
}

.search-box input:focus {
    outline: none;
    box-shadow: none;
}

.search-box button {
    border: none;
    background: white;
    color: var(--gray-text);
    padding: 0 20px;
    transition: color 0.3s;
}

.search-box button:hover {
    color: var(--primary-pink);
}

.header-icons {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
}

.header-icon {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--dark-color);
    font-size: 14px;
    position: relative;
    transition: color 0.3s;
}

.header-icon:hover {
    color: var(--primary-pink);
}

.header-icon i {
    font-size: 18px;
}

.header-icon .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-pink);
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

/* Pincode Box */
.pincode-box {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    margin-right: 15px;
}

.pincode-box img {
    width: 20px;
    height: 20px;
}

.pincode-text small {
    display: block;
    font-size: 11px;
    color: var(--gray-text);
}

.pincode-text strong {
    font-size: 12px;
    color: var(--dark-color);
}

/* ===== NAVIGATION ===== */
.nav-bar {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.sticky-top {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    background: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 15px 20px;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-pink);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 0 0 8px 8px;
    min-width: 220px;
    display: none;
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 8px 20px;
    color: var(--dark-color);
    font-size: 13px;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: var(--light-gray);
    color: var(--primary-pink);
    padding-left: 25px;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 0;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 800px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 0 0 8px 8px;
    display: none;
    z-index: 1000;
    padding: 25px;
}

.nav-item:hover .mega-menu {
    display: block;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mega-category h4 {
    color: var(--primary-pink);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.mega-category h4 a {
    color: var(--primary-pink);
}

.mega-links {
    list-style: none;
    padding: 0;
}

.mega-links li {
    margin-bottom: 8px;
}

.mega-links a {
    color: var(--gray-text);
    font-size: 12px;
    transition: color 0.3s;
}

.mega-links a:hover {
    color: var(--primary-pink);
}

.category-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.mega-img-link {
    display: block;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #f8f8f8;
}

.mega-cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .mega-cat-img {
    transform: scale(1.1);
}

/* Gift Animation */
.gift-anim {
    display: inline-flex;
    align-items: center;
}

.gift-anim .dot {
    color: var(--primary-pink);
    font-size: 18px;
    animation: pulse 1.5s ease infinite;
}

.gift-anim img {
    width: 20px;
    height: 20px;
    margin: 0 2px;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-color);
    cursor: pointer;
    padding: 10px 0;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    margin: 20px 0;
}

.carousel-item img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.carousel-indicators button.active {
    background: var(--primary-pink);
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    bottom: 20%;
}

.carousel-caption h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.carousel-caption p {
    font-size: 16px;
    margin-bottom: 15px;
}

.carousel-caption .btn {
    background: var(--primary-pink);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.carousel-caption .btn:hover {
    background: var(--primary-pink-dark);
    transform: translateY(-2px);
}

/* ===== CATEGORY SLIDER ===== */
.category-icons-section {
    padding: 40px 0;
    background: #ffffff;
}

.category-slider-container {
    width: 100%;
    position: relative;
    margin: 20px 0;
}

.category-slider-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.category-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.category-slide {
    flex: 0 0 auto;
    width: 180px;
}

@media (max-width: 1200px) {
    .category-slide {
        width: 160px;
    }
}

@media (max-width: 992px) {
    .category-slide {
        width: 140px;
    }
}

@media (max-width: 768px) {
    .category-slide {
        width: 130px;
    }
}

@media (max-width: 480px) {
    .category-slide {
        width: 110px;
    }
}

.category-icon-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.promo-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-pink);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(233, 113, 139, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 12px 15px;
    text-align: left;
}

.product-info h3 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.category-icon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.category-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8f8f8;
    border-radius: 50%;
    padding: 15px;
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-icon-card:hover .category-image-wrapper img {
    transform: scale(1.1);
}

.category-name {
    padding: 15px 5px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    transition: color 0.3s ease;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon-card:hover .category-name {
    color: var(--primary-pink);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-control {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-control:hover {
    background: var(--primary-pink);
    color: white;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot:hover {
    background: var(--primary-pink);
}

.slider-dots .dot.active {
    width: 25px;
    border-radius: 10px;
    background: var(--primary-pink);
}

/* ===== VALENTINE SPECIALS ===== */
.valentine-specials-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff5f7 0%, #ffe4e8 100%);
    margin-bottom: 60px;
}

.specials-slider-container {
    width: 100%;
    position: relative;
    margin: 20px 0;
}

.specials-slider-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.specials-slider-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.specials-slide {
    flex: 0 0 auto;
    width: 280px;
}

@media (max-width: 992px) {
    .specials-slide {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .specials-slide {
        width: 200px;
    }
}

.special-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(233, 113, 139, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid rgba(233, 113, 139, 0.1);
    position: relative;
    z-index: 20;
}

.special-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(233, 113, 139, 0.3);
    border-color: var(--primary-pink);
}

.special-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.special-image-wrapper:before {
    content: '❤️';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    animation: heartbeat 2s ease infinite;
}

.special-card:hover .special-image-wrapper:before {
    opacity: 1;
}

.special-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.special-card:hover .special-image-wrapper img {
    transform: scale(1.1);
}

.special-name {
    padding: 15px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #d43f6b;
    background: white;
    border-top: 2px solid rgba(233, 113, 139, 0.2);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.special-card:hover .special-name {
    background: var(--primary-pink);
    color: white;
    border-top-color: var(--primary-pink);
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* ===== PROMISE BANNER ===== */
.promise-banner img,
.fresh-drops-banner img,
.new-launch-banner img,
.valentine-banner img,
.first-access-banner img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.promise-banner a:hover img,
.fresh-drops-banner a:hover img,
.new-launch-banner a:hover img,
.valentine-banner a:hover img,
.first-access-banner a:hover img {
    transform: scale(1.02);
}

/* ===== FEATURED COLLECTION BANNER (after Latest Collections) ===== */
.featured-collection-banner {
    padding: 70px 0;
    background: linear-gradient(135deg, #fff5f7 0%, #ffe4e8 100%);
    position: relative;
    overflow: hidden;
}

.featured-collection-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233, 113, 139, 0.1), transparent 70%);
    pointer-events: none;
}

.fcb-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(233, 113, 139, 0.12);
    color: var(--primary-pink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(233, 113, 139, 0.3);
    margin-bottom: 18px;
}

.fcb-heading {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.3;
    margin-bottom: 18px;
}

.fcb-accent {
    background: linear-gradient(135deg, var(--primary-pink), #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fcb-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 0;
}

.fcb-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.fcb-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(233, 113, 139, 0.2);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-color);
    box-shadow: 0 2px 10px rgba(233, 113, 139, 0.08);
}

.fcb-badge i {
    color: var(--primary-pink);
    font-size: 13px;
}

.fcb-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-pink), #c0392b);
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(233, 113, 139, 0.35);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.fcb-cta:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(233, 113, 139, 0.45);
}

.fcb-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(233, 113, 139, 0.2);
}

.fcb-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.fcb-image-wrapper:hover .fcb-image {
    transform: scale(1.04);
}

.fcb-float-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: white;
    border: 2px solid rgba(233, 113, 139, 0.2);
    border-radius: 16px;
    padding: 12px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.fcb-float-num {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-pink), #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.fcb-float-text {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .fcb-heading {
        font-size: 26px;
    }

    .fcb-image {
        height: 280px;
    }

    .featured-collection-banner {
        padding: 50px 0;
    }
}

/* ===== SHOP BY RECIPIENT ===== */
.recipient-card-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    position: relative;
    z-index: 20;
    display: block;
}

.recipient-card-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.recipient-img-box {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.recipient-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.recipient-card-wrap:hover .recipient-img {
    transform: scale(1.06);
}

.recipient-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
}

.recipient-label-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.recipient-label-badge.him {
    background: rgba(30, 64, 175, 0.88);
    color: #ffffff;
}

.recipient-label-badge.her {
    background: rgba(233, 113, 139, 0.88);
    color: #ffffff;
}

.recipient-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: #fff;
}

.recipient-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
}

.recipient-cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-pink);
    transition: gap 0.2s;
}

.recipient-card-wrap:hover .recipient-cta {
    letter-spacing: 0.5px;
}

/* ===== PRICE CATEGORIES ===== */
.price-card-v2 {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    display: block;
    position: relative;
    z-index: 20;
}

.price-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.price-img-box {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.price-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.price-card-v2:hover .price-img {
    transform: scale(1.06);
}

.price-badge {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-pink), #c0392b);
    border-radius: 30px;
    padding: 8px 20px;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(233, 113, 139, 0.4);
}

.price-badge-text {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
}

.price-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #fff;
}

.price-footer-desc {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.price-footer-cta {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-pink);
}

@media (max-width: 576px) {
    .price-img-box {
        height: 160px;
    }

    .price-badge {
        padding: 5px 12px;
    }

    .price-badge-text {
        font-size: 12px;
    }
}

/* ===== SHOP BY COLOUR ===== */
.colour-card-v2 {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.colour-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.13);
}

.colour-img-box {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.colour-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.colour-card-v2:hover .colour-img {
    transform: scale(1.06);
}

.colour-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s;
}

.colour-card-v2:hover .colour-hover-overlay {
    background: rgba(0, 0, 0, 0.08);
}

.colour-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #fff;
}

.colour-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    border: 2px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.colour-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.colour-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1;
}

.colour-sub {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 500;
}

.colour-arrow {
    color: var(--primary-pink);
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.colour-card-v2:hover .colour-arrow {
    opacity: 1;
}

@media (max-width: 576px) {
    .colour-img-box {
        height: 160px;
    }

    .recipient-img-box {
        height: 220px;
    }
}


/* ===== SHOP BY BOND ===== */
.bond-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bond-card img {
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bond-card:hover img {
    transform: scale(1.05);
}

/* ===== FRESH DROPS CAROUSEL ===== */
.fresh-drops-carousel {
    padding: 40px 0;
    background-attachment: fixed;
}

.fresh-drops-slider {
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.fresh-drops-slider::-webkit-scrollbar {
    height: 5px;
}

.fresh-drops-slider::-webkit-scrollbar-thumb {
    background: var(--primary-pink);
    border-radius: 10px;
}

.fresh-drop-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fresh-drop-card img {
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fresh-drop-card:hover img {
    transform: scale(1.05);
}

/* ===== LATEST COLLECTIONS SLIDER ===== */
.latest-collections {
    padding: 40px 0;
    background: #ffffff;
}

.collection-slider-container {
    width: 100%;
    position: relative;
    margin: 20px 0;
}

.collection-slider-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.collection-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.collection-slide {
    flex: 0 0 auto;
    width: 350px;
}

@media (max-width: 992px) {
    .collection-slide {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .collection-slide {
        width: 300px;
    }
}

.collection-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.collection-main-image {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.collection-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card:hover .collection-main-image img {
    transform: scale(1.05);
}

.collection-info {
    padding: 15px;
    text-align: center;
}

.collection-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    transition: color 0.3s;
}

.collection-card:hover .collection-info h3 {
    color: var(--primary-pink);
}

/* ===== ALL YOURS CAROUSEL ===== */
.all-yours-carousel {
    padding: 60px 0;
    background-attachment: fixed;
}

.all-yours-carousel .section-title {
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.all-yours-carousel .section-title:after {
    background: white;
}

.all-yours-slider-container {
    width: 100%;
    position: relative;
    margin: 20px 0;
}

.all-yours-slider-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.all-yours-slider-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.all-yours-slide {
    flex: 0 0 auto;
    width: 200px;
}

@media (max-width: 992px) {
    .all-yours-slide {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .all-yours-slide {
        width: 150px;
    }
}

.all-yours-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
}

.all-yours-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

.all-yours-image-wrapper {
    width: 100%;
    height: 160px;
    overflow: hidden;
    flex-shrink: 0;
}

.all-yours-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.all-yours-card:hover .all-yours-image-wrapper img {
    transform: scale(1.08);
}

.all-yours-name {
    padding: 12px 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-color);
    background: white;
    border-top: 2px solid rgba(233, 113, 139, 0.15);
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.all-yours-card:hover .all-yours-name {
    color: var(--primary-pink);
    background: #fff5f7;
}

/* ===== BESTSELLERS / CATEGORY SECTIONS ===== */
.bestsellers {
    padding: 60px 0;
    background: #fffaf7;
    position: relative;
    z-index: 10;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.product-image .main-image {
    opacity: 1;
}

.product-image .hover-image {
    opacity: 0;
}

.product-card:hover .product-image .main-image {
    opacity: 0;
}

.product-card:hover .product-image .hover-image {
    opacity: 1;
}

.bestseller-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-pink);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s;
}

.wishlist-btn i {
    color: #6c757d;
    font-size: 16px;
}

.wishlist-btn.active i,
.wishlist-btn:hover i {
    color: var(--primary-pink);
}

.product-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 42px;
}

.product-info h3 a {
    color: var(--dark-color);
    text-decoration: none;
}

.product-info h3 a:hover {
    color: var(--primary-pink);
}

.product-rating {
    color: #ffc107;
    margin-bottom: 8px;
    font-size: 12px;
    min-height: 18px;
}

.product-rating span {
    color: var(--gray-text);
    margin-left: 5px;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.original-price {
    font-size: 13px;
    color: var(--gray-text);
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: normal;
}

/* Best price box positioning adjustments */
.best-price-box {
    margin-top: auto;
    margin-bottom: 15px;
    background: #fdf2f4;
    padding: 6px 0;
    text-align: center;
    border-radius: 6px;
    border: 1px dashed var(--primary-pink);
}

.best-price-box span {
    color: var(--primary-pink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.add-to-cart {
    width: 100%;
    padding: 10px;
    background: var(--primary-pink);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    cursor: pointer;
}

.add-to-cart:hover {
    background: var(--primary-pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(233, 113, 139, 0.3);
}

.product-info>.add-to-cart:first-of-type {
    margin-top: auto;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 40px 0;
}

.testimonial-card {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    padding: 25px;
    border-radius: 15px 15px 0 0;
    min-height: 150px;
}

.testimonial-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.testimonial-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.testimonial-product {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 0 0 15px 15px;
}

.testimonial-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== GOLD/SILVER TOGGLE ===== */
.gold-silver-toggle-border {
    background: linear-gradient(90deg, #E1BF7C 0%, #DBD295 52.4%, #B57E10 100%);
    padding: 1px;
    border-radius: 20px;
    width: 50%;
    margin: 1rem auto;
}

.gold-silver-toggle {
    display: flex;
    background: #ffffff;
    border-radius: 20px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.gold-silver-toggle input {
    display: none;
}

.gold-silver-toggle label {
    flex: 1;
    cursor: pointer;
    z-index: 2;
    color: var(--dark-color);
    transition: color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-weight: 500;
}

.gold-silver-toggle .slider {
    position: absolute;
    left: 3px;
    top: 3px;
    height: calc(100% - 6px);
    width: 50%;
    background: linear-gradient(298.02deg, var(--primary-green) 0%, var(--primary-green-light) 155.86%);
    border-radius: 20px;
    transition: transform 0.3s ease;
    z-index: 1;
}

#gold-toggle:checked~.slider {
    transform: translateX(calc(100% - 6px));
    background: linear-gradient(126.94deg, #C8617F -11.29%, #8C2241 97.48%);
}

#gold-toggle:checked+label,
#silver-toggle:checked+label {
    color: #ffffff;
}

/* ===== ROMANTIC EXTENSIONS (MOBILE) ===== */
.romantic-extensions img {
    border-radius: 15px;
    transition: transform 0.3s;
}

.romantic-extensions img:hover {
    transform: scale(1.02);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(to bottom, #ffffff, #fdfaf7);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
}

/* ===== ABOUT OORZA - Modern Always-Visible Section ===== */
.about-giva-modern {
    padding: 70px 0 60px;
    background: linear-gradient(135deg, #fff5f7 0%, #ffe4e8 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(233, 113, 139, 0.15);
}

.about-giva-modern::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233, 113, 139, 0.12), transparent 70%);
    pointer-events: none;
}

.about-giva-modern::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233, 113, 139, 0.08), transparent 70%);
    pointer-events: none;
}

.about-giva-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-pink);
    border: 1px solid rgba(233, 113, 139, 0.5);
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
    background: rgba(233, 113, 139, 0.08);
}

.about-giva-heading {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 14px;
    line-height: 1.2;
}

.about-giva-subtitle {
    font-size: 15px;
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Stat Cards */
.about-stat-card {
    background: #ffffff;
    border: 1px solid rgba(233, 113, 139, 0.2);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 113, 139, 0.08);
}

.about-stat-card:hover {
    background: #fff0f3;
    border-color: rgba(233, 113, 139, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(233, 113, 139, 0.15);
}

.about-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-pink), #c0392b);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 6px 16px rgba(233, 113, 139, 0.3);
}

.about-stat-icon i {
    color: white;
    font-size: 18px;
}

.about-stat-number {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-pink), #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Info Cards */
.about-info-card {
    background: #ffffff;
    border: 1px solid rgba(233, 113, 139, 0.18);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(233, 113, 139, 0.07);
}

.about-info-card:hover {
    border-color: rgba(233, 113, 139, 0.45);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(233, 113, 139, 0.15);
}

.about-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(233, 113, 139, 0.15), rgba(192, 57, 43, 0.1));
    border: 1px solid rgba(233, 113, 139, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-info-icon i {
    color: var(--primary-pink);
    font-size: 22px;
}

.about-info-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.about-info-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.75;
    margin: 0;
}


/* Footer Main */
.footer-main {
    padding: 50px 0 30px;
}

.footer h5 {
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-pink);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-pink);
    transform: translateX(5px);
}

.footer address p {
    color: var(--gray-text);
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer address i {
    color: var(--primary-pink);
    width: 20px;
    margin-right: 5px;
}

.app-stats {
    color: var(--primary-pink);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.app-download-btn {
    display: inline-block;
    transition: transform 0.3s;
}

.app-download-btn:hover {
    transform: scale(1.05);
}

.app-download-btn img {
    max-width: 150px;
    border-radius: 10px;
}

.cashback-text {
    color: var(--gray-text);
    font-size: 14px;
}

.text-pink {
    color: var(--primary-pink);
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--light-gray);
    border-radius: 50%;
    color: var(--dark-color);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateY(-3px);
}

/* Channel Partners */
.channel-partners {
    background: #f8f9fa;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.channel-partners h5 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 600;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.partner-logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s;
    filter: grayscale(100%);
}

.partner-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    background: var(--dark-color);
    color: white;
    padding: 20px 0;
}

.copyright {
    margin: 0;
    font-size: 14px;
    color: #aaa;
}

.payment-methods {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.payment-methods i {
    font-size: 24px;
    color: #aaa;
    transition: color 0.3s;
}

.payment-methods i:hover {
    color: white;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 20px;
        transition: left 0.3s ease;
        z-index: 1002;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.show {
        left: 0;
    }

    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .dropdown-menu,
    .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--primary-pink);
        padding-left: 15px;
        display: none;
        background: #f9f9f9;
    }

    .dropdown-menu.show,
    .mega-menu.show {
        display: block;
    }

    .mega-grid {
        grid-template-columns: 1fr;
    }

    .mega-category {
        margin-bottom: 15px;
    }

    .mobile-overlay.show {
        display: block;
    }

    .gold-silver-toggle-border {
        width: 85%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 22px;
    }

    .carousel-caption {
        display: none !important;
    }

    .recipient-card {
        height: 150px;
    }

    .price-card {
        height: 120px;
    }

    .colour-card {
        height: 150px;
    }

    .bond-card {
        height: 100px;
    }

    .special-card {
        height: auto;
    }

    .fresh-drop-card {
        height: 180px;
        width: 180px;
    }

    .collection-main-image {
        height: 200px;
    }

    .testimonial-product {
        height: 150px;
    }

    .footer h5 {
        margin-top: 20px;
    }

    .footer h5:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .payment-methods {
        justify-content: center;
        margin-top: 15px;
    }

    .copyright {
        text-align: center;
    }

    .partner-logos {
        gap: 15px;
    }

    .partner-logos img {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .category-slide {
        width: 110px;
    }

    .category-name {
        font-size: 11px;
        padding: 8px 2px;
        min-height: 40px;
    }

    .specials-slide {
        width: 180px;
    }

    .special-name {
        font-size: 13px;
        padding: 10px;
        min-height: 50px;
    }

    .all-yours-slide {
        width: 130px;
    }

    .all-yours-name {
        font-size: 11px;
        padding: 8px;
        min-height: 40px;
    }
}

/* ===== CUSTOMER STORIES (TESTIMONIALS) ===== */
.testimonials {
    background: #fdfaf7 !important;
    /* Creamy luxe background */
}

.testimonial-card-new {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none !important;
    background: #fff;
    border-radius: 24px !important;
    position: relative;
}

.testimonial-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.testimonial-card-new .quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    color: var(--primary-pink);
    opacity: 0.15;
    z-index: 1;
}

.testimonial-card-new img {
    border-top: 1px solid #eee;
}

.testimonial-card-new h6 {
    color: #2d3436;
    letter-spacing: 0.5px;
}

.testimonial-card-new .review-text {
    font-style: italic;
    color: #636e72;
    line-height: 1.8;
}

.testimonial-card-new .purchased-tag {
    background: #fff5f6;
    color: var(--primary-pink);
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    display: inline-block;
}

@media (max-width: 768px) {
    .testimonial-card-new {
        margin-bottom: 20px;
    }
}

/* ===== CRAFTSMANSHIP VIDEO SECTION ===== */
.craftsmanship-section {
    position: relative;
    height: 650px;
    width: 100%;
    margin: 80px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.craftsmanship-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 60px 40px;
    color: #ffffff;
    background: transparent;
    border: none;
    /* Animation base */
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.craftsmanship-section.active .craftsmanship-overlay {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.craftsmanship-tag {
    display: inline-block;
    padding: 10px 30px;
    background: var(--primary-pink);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(233, 113, 139, 0.4);
}

.craftsmanship-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
}

.craftsmanship-subtitle {
    font-size: 26px;
    color: var(--primary-pink);
    margin-bottom: 35px;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.craftsmanship-desc {
    font-size: 18px;
    line-height: 2;
    color: #444;
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.craftsmanship-cta {
    display: inline-block;
    padding: 20px 50px;
    background: var(--dark-color);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none !important;
}

.craftsmanship-cta:hover {
    background: var(--primary-pink);
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(233, 113, 139, 0.3);
}

@media (max-width: 991px) {
    .craftsmanship-title {
        font-size: 48px;
    }

    .craftsmanship-overlay {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .craftsmanship-section {
        height: auto;
        padding: 80px 20px;
    }

    .craftsmanship-title {
        font-size: 36px;
    }

    .craftsmanship-subtitle {
        font-size: 18px;
    }

    .craftsmanship-desc {
        font-size: 16px;
    }
}

/* ===== ALL PRODUCTS LISTING ===== */
.all-products-listing {
    background: #fff;
}

.all-products-listing .product-card {
    height: 100%;
}

.all-products-listing .main-image {
    height: 300px;
    object-fit: cover;
}

/* Fresh Drops Alignment Fix */
.fresh-drops-grid .row {
    margin-right: -15px;
    margin-left: -15px;
}

.fresh-drop-card {
    transition: all 0.3s ease;
}

.fresh-drop-card:hover {
    transform: translateY(-5px);
}

/* Shop by Recipient Alignment */
.recipient-card-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.recipient-img-box {
    height: 100%;
    width: 100%;
}

.recipient-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recipient-card-wrap:hover .recipient-img {
    transform: scale(1.05);
}

.recipient-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.recipient-label-badge {
    padding: 8px 16px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.recipient-label-badge.him {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.recipient-label-badge.her {
    background: linear-gradient(135deg, #e9718b, #c0392b);
}

.recipient-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    display: flex;
    flex-direction: column;
}

.recipient-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
}

.recipient-cta {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .recipient-card-wrap {
        height: 250px;
    }

    .recipient-title {
        font-size: 18px;
    }
}

/* Category Grid Uniformity */
.category-listing .pcard {
    height: 100% !important;
    display: flex;
    flex-direction: column;
}

.pcard-img-wrap {
    height: 300px !important;
}

.pcard-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .craftsmanship-title {
        font-size: 46px;
    }
}

@media (max-width: 768px) {
    .craftsmanship-section {
        height: 500px;
    }

    .craftsmanship-title {
        font-size: 34px;
    }

    .craftsmanship-subtitle {
        font-size: 18px;
    }

    .craftsmanship-desc {
        font-size: 16px;
    }
}

/* =========================================
   GLOBAL MOBILE RESPONSIVENESS (FRONTEND) 
   ========================================= */
@media (max-width: 991px) {

    /* Mobile Toggle & Navigation */
    .mobile-toggle {
        display: block !important;
        background: transparent;
        color: var(--dark-color);
        border: none;
        font-size: 24px;
        padding: 10px;
        margin-left: -10px;
    }

    .nav-menu {
        display: none !important;
        flex-direction: column;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1050;
    }

    .nav-menu.show {
        display: flex !important;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        padding: 15px 20px !important;
    }

    /* Mega menu to accordion like */
    .mega-menu {
        position: static !important;
        width: 100% !important;
        box-shadow: none !important;
        padding: 10px 20px !important;
        display: none;
        /* Add JS to toggle this if needed or rely on hover on mobile which is tricky */
    }

    .nav-item:hover .mega-menu {
        display: block !important;
    }

    .mega-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .dropdown-menu {
        position: static !important;
        width: 100%;
        box-shadow: none;
        border: none;
        padding-left: 20px;
    }
}

@media (max-width: 768px) {

    /* Header Icons overlap fix */
    .header-icons {
        gap: 10px !important;
    }

    .header-icon i {
        font-size: 16px !important;
    }

    /* Announcement Bar */
    .announcement-item a {
        font-size: 11px !important;
    }

    .top-bar {
        padding: 5px 0 !important;
    }

    /* Shop By Price / Bond Grid Fix */
    .price-card-v2,
    .bond-card,
    .fresh-drop-card {
        margin-bottom: 15px;
    }

    /* Section padding reductions */
    .featured-collection-banner {
        padding: 40px 0 !important;
    }

    .hero-slide-title {
        font-size: 24px !important;
    }

    .hero-slide-sub {
        font-size: 14px !important;
    }
}

@media (max-width: 576px) {

    /* Bond section too crowded on mobile */
    .bond-card img {
        width: 80px !important;
        height: 80px !important;
    }

    .bond-card h6 {
        font-size: 12px !important;
        margin-top: 5px;
    }

    /* Better Fresh drop images for mobile */
    .fresh-drop-card .drop-img-wrapper img {
        width: 90px !important;
        height: 90px !important;
    }

    .fresh-drop-card h6 {
        font-size: 12px !important;
    }

    /* Grid for Bond and Drops should fallback to 3 items per row, but bootstrap row handles that. 
       Let's ensure row-cols-3 or similar is used if not handled by bootstrap classes. */
    .fresh-drops-grid .row,
    .bond-grid .row {
        /* Remove gap as it breaks bootstrap col percentages */
        gap: 0;
    }
}

.category-icon-card {
    position: relative;
    z-index: 20;
    display: block;
}

.category-slide {
    position: relative;
    z-index: 20;
}

.add-to-cart {
    margin-top: auto;
}

.add-to-cart {
    margin-top: auto;
}

/* ===== KNOW MORE ABOUT OORZA JEWELS - ORIGINAL DESIGN ===== */
.about-giva-section {
    background-color: #fff5f6;
    padding: 80px 0;
}

.about-giva-label {
    display: inline-block;
    padding: 5px 25px;
    background: #fde2e7;
    color: #e9718b;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-giva-heading {
    font-size: 36px;
    font-weight: 800;
    color: #2d2d2d;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-giva-subtitle {
    font-size: 16px;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

.about-stat-card {
    background: #fff;
    padding: 30px 10px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.about-stat-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid #fecaca;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(185, 28, 28, 0.1);
}

.about-stat-icon i {
    color: #b91c1c;
    font-size: 16px;
}

.about-stat-number {
    font-size: 22px;
    font-weight: 800;
    color: #b91c1c;
    margin-bottom: 2px;
}

.about-stat-label {
    font-size: 10px;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-info-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: left;
    transition: transform 0.3s ease;
}

.about-info-icon {
    width: 50px;
    height: 50px;
    background: #fee2e2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(185, 28, 28, 0.2);
}

.about-info-icon i {
    color: #b91c1c;
    font-size: 20px;
}

.about-info-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.about-info-card h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #e9718b;
}

.about-info-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.about-stat-card:hover,
.about-info-card:hover {
    transform: translateY(-8px);
}

.footer-main {
    background: #fff;
    padding-bottom: 40px;
}

.footer-links-v2 li a {
    transition: all 0.3s ease;
    color: #6c757d;
}

.footer-links-v2 li a:hover {
    color: var(--primary-pink) !important;
    padding-left: 5px;
}

.footer-social-bar {
    background: #fafafa;
}

.social-links-v2 a {
    font-size: 18px;
    transition: color 0.3s ease;
    color: #333 !important;
}

.social-links-v2 a:hover {
    color: var(--primary-pink) !important;
}

.footer-newsletter .form-control:focus {
    box-shadow: none;
    background: #e9e9e9 !important;
}


/* Animation Utilities */
.hover-zoom {
    transition: transform 0.3s ease;
}

.hover-zoom:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Announcement Bar Scrolling Animation */
@keyframes scrollAnnouncements {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}