/* =============================================
   AYRA JEWELLERY - LANDING PAGE STYLES
   Theme: Light Pink & Dark Pink
   ============================================= */

/* ----- CSS Variables / Design Tokens ----- */
:root {
    --pink-50: #FFF0F5;
    --pink-100: #FFE4EF;
    --pink-200: #FFC2DB;
    --pink-300: #FF9BC0;
    --pink-400: #FF6FA0;
    --pink-500: #E84588;
    --pink-600: #D63384;
    --pink-700: #C2185B;
    --pink-800: #9B1150;
    --pink-900: #7A0E42;
    --gold: #C9A96E;
    --gold-light: #E8D5A8;
    --cream: #FFF8F2;
    --cream-dark: #F9F0E7;
    --dark: #2D1F2D;
    --dark-light: #4A3B4A;
    --text: #5A4258;
    --text-light: #8E7A8C;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 10px rgba(214, 51, 132, 0.08);
    --shadow-md: 0 8px 30px rgba(214, 51, 132, 0.12);
    --shadow-lg: 0 15px 50px rgba(214, 51, 132, 0.18);
    --shadow-xl: 0 25px 60px rgba(214, 51, 132, 0.22);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--pink-50);
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    line-height: 1.2;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.highlight {
    color: var(--pink-600);
    position: relative;
}

/* ----- Preloader ----- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--pink-50) 0%, var(--pink-100) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.preloader-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    animation: pulse-img 1.5s ease-in-out infinite;
}

@keyframes pulse-img {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* ----- Navbar ----- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 240, 245, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--pink-700);
}

.logo i {
    font-size: 22px;
    color: var(--pink-600);
}

.brand-logo-img {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    padding: 6px 8px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(214, 51, 132, 0.1);
}

.nav-links li a {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
    background: var(--pink-600);
    color: white;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(214, 51, 132, 0.1);
    transition: var(--transition);
}

.nav-icon:hover {
    background: var(--pink-600);
    color: white;
    transform: translateY(-2px);
}



.btn-nav {
    padding: 10px 24px;
    background: var(--pink-600);
    color: white;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--pink-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2.5px;
    background: var(--pink-700);
    border-radius: 4px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ----- Hero Section ----- */
.hero {
    min-height: 100vh;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--pink-50) 0%, var(--pink-100) 40%, var(--cream) 100%);
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--pink-200);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--pink-300);
    bottom: -100px;
    left: -150px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--gold-light);
    top: 50%;
    left: 40%;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 180px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(214, 51, 132, 0.1);
    border: 1px solid rgba(214, 51, 132, 0.2);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--pink-700);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark);
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--pink-600), var(--pink-800));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
    color: white;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(214, 51, 132, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(214, 51, 132, 0.4);
}

.btn-primary i {
    transition: transform 0.3s;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 2px solid var(--pink-300);
    color: var(--pink-700);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--pink-100);
    border-color: var(--pink-500);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--pink-700);
}

.stat-suffix {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--pink-500);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--pink-200);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
}

.hero-img-wrapper img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.floating-card .card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.floating-card strong {
    display: block;
    font-size: 13px;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
}

.floating-card span {
    font-size: 11px;
    color: var(--pink-600);
    font-weight: 500;
}

.card-1 {
    bottom: 50px;
    left: -40px;
    animation-delay: 0s;
}

.card-2 {
    top: 60px;
    right: -30px;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 12px;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--pink-300);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--pink-500);
    border-radius: 4px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* ----- Features Bar ----- */
.features-bar {
    padding: 60px 0;
    background: white;
    border-top: 1px solid var(--pink-100);
    border-bottom: 1px solid var(--pink-100);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--pink-50);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--pink-700);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
    color: white;
    transform: scale(1.1);
}

.feature-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ----- Section Shared Styles ----- */
.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--pink-600);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-desc {
    max-width: 650px;
    margin: 0 auto;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ----- About Section ----- */
.about-section {
    padding: 100px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-img-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating {
    color: #FFB800;
    font-size: 14px;
}

.rating-text {
    font-weight: 600;
    font-size: 13px;
    color: var(--dark);
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 5px solid white;
    box-shadow: var(--shadow-md);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
    color: white;
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
}

.about-text {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 30px 0;
}

.about-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

.about-feat i {
    color: var(--pink-600);
    font-size: 16px;
}

/* ----- Collections Section ----- */
.collections-section {
    padding: 100px 0;
    background: white;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.collection-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--pink-50);
    transition: var(--transition);
    border: 1px solid var(--pink-100);
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.collection-img {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.collection-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.collection-card:hover .collection-img img {
    transform: scale(1.08);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: rgba(214, 51, 132, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.btn-shop {
    padding: 12px 32px;
    background: white;
    color: var(--pink-700);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    transform: translateY(20px);
    transition: var(--transition);
}

.collection-card:hover .btn-shop {
    transform: translateY(0);
}

.btn-shop:hover {
    background: var(--pink-700);
    color: white;
}

.collection-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 14px;
    background: var(--pink-600);
    color: white;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.collection-tag.hot {
    background: #FF4757;
}

.collection-info {
    padding: 24px;
}

.collection-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.collection-price {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.collection-price strong {
    color: var(--pink-700);
    font-size: 18px;
}

.collection-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-light);
}

.collection-meta i {
    color: #FFB800;
}

.collections-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border: 2px solid var(--pink-600);
    color: var(--pink-700);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-dark:hover {
    background: var(--pink-600);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ----- Category Section ----- */
.category-section {
    padding: 100px 0;
    background: var(--cream);
}

.category-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.category-video-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.category-video-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.play-button i {
    font-size: 28px;
    color: var(--pink-700);
    margin-left: 4px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--pink-600);
}

.play-button:hover i {
    color: white;
}

.category-content .section-desc {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 36px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-item {
    text-align: center;
    padding: 20px 10px;
    border-radius: var(--radius-md);
    background: white;
    border: 2px solid var(--pink-100);
    transition: var(--transition);
    cursor: pointer;
}

.category-item:hover {
    border-color: var(--pink-500);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
    border: 2px solid var(--pink-200);
}

.category-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}

/* ----- Products Section ----- */
.products-section {
    padding: 100px 0;
    background: white;
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 28px;
    border: 2px solid var(--pink-200);
    background: transparent;
    border-radius: var(--radius-full);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--pink-600);
    border-color: var(--pink-600);
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.product-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--pink-50);
    border: 1px solid var(--pink-100);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-actions {
    position: absolute;
    right: 12px;
    top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--pink-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--pink-600);
    color: white;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 14px;
    background: var(--pink-600);
    color: white;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
}

.product-badge.new {
    background: #00C853;
}

.product-badge.sale {
    background: #FF4757;
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    font-weight: 500;
    color: var(--pink-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 6px 0 8px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 10px;
}

.product-rating i {
    font-size: 12px;
    color: #FFB800;
}

.product-rating span {
    font-size: 12px;
    color: var(--text-light);
    margin-left: 6px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--pink-700);
}

.old-price {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

/* ----- Offer Banner ----- */
.offer-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--pink-700) 0%, var(--pink-900) 100%);
    position: relative;
    overflow: hidden;
}

.offer-banner::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    top: -200px;
    right: -200px;
}

.offer-banner::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    bottom: -100px;
    left: -100px;
}

.offer-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.offer-tag {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.offer-content h2 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
}

.offer-content h2 .highlight {
    color: var(--gold-light);
    -webkit-text-fill-color: var(--gold-light);
}

.offer-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.offer-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
}

.timer-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 90px;
}

.timer-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.timer-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.timer-sep {
    font-size: 30px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}

.btn-white {
    background: white;
    color: var(--pink-700);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    background: var(--gold-light);
    color: var(--dark);
}

/* ----- Why Section ----- */
.why-section {
    padding: 100px 0;
    background: var(--pink-50);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--pink-100);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pink-300);
}

.why-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 30px;
    color: var(--pink-700);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.why-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ----- Testimonials Section ----- */
.testimonials-section {
    padding: 100px 0;
    background: var(--cream);
}

.testimonials-wrapper {
    overflow: hidden;
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: white;
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--pink-100);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    margin-bottom: 18px;
}

.testimonial-stars i {
    color: #FFB800;
    font-size: 16px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

/* ----- Process Section ----- */
.process-section {
    padding: 100px 0;
    background: white;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--pink-200), var(--pink-500), var(--pink-200));
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.step-number {
    min-width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.step-content {
    padding-top: 20px;
}

.step-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.step-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ----- Gallery Section ----- */
.gallery-section {
    padding: 100px 0 0;
    background: var(--pink-50);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.gallery-item {
    position: relative;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(214, 51, 132, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 36px;
    color: white;
    transform: scale(0.5);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ----- Contact Section ----- */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info .text-left {
    margin-left: 0;
    max-width: 100%;
    text-align: left;
    margin-bottom: 40px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-detail-item .c-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
    color: var(--pink-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-detail-item:hover .c-icon {
    background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
    color: white;
    transform: scale(1.1);
}

.contact-detail-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark);
}

.contact-detail-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.contact-map {
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 8px solid white;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: var(--pink-50);
}

/* ----- Newsletter Section ----- */
.newsletter-section {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--pink-100) 0%, var(--pink-200) 100%);
}

.newsletter-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.newsletter-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid var(--pink-300);
    border-radius: var(--radius-full);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background: white;
    color: var(--text);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--pink-600);
    box-shadow: 0 0 0 4px rgba(214, 51, 132, 0.1);
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-note {
    font-size: 13px !important;
    color: var(--pink-600) !important;
    margin-bottom: 0 !important;
}

/* ----- Brands Section ----- */
.brands-section {
    padding: 50px 0;
    background: white;
    border-top: 1px solid var(--pink-100);
    overflow: hidden;
}

.brands-label {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.brands-marquee {
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.brand-item {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--pink-300);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.brand-item i {
    font-size: 18px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ----- Footer ----- */
.footer {
    padding: 80px 0 0;
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-logo i {
    color: var(--pink-400);
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--pink-600);
    color: white;
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--pink-500);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--pink-400);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
}

.contact-item i {
    color: var(--pink-400);
    margin-top: 3px;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 13px;
}

.footer-bottom i.fa-heart {
    color: var(--pink-500);
}

.payment-methods {
    display: flex;
    gap: 16px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.4);
}

/* ----- Back to Top ----- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ----- AOS / Scroll Animations ----- */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ----- RESPONSIVE DESIGN ----- */

/* Tablet */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 52px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        display: none;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .nav-links {
        display: none;
    }

    .nav-actions .btn-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 240, 245, 0.98);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        border-radius: 0;
        z-index: 999;
        gap: 8px;
    }

    .nav-links.mobile-open li a {
        font-size: 20px;
        padding: 14px 32px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-title {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 90px 0 40px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-suffix {
        font-size: 18px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-divider {
        display: none;
    }

    /* Nav mobile */
    .nav-actions .nav-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .logo {
        font-size: 22px;
    }

    .logo i {
        font-size: 18px;
    }

    /* Sections spacing */
    .features-bar {
        padding: 40px 0;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .feature-item {
        padding: 20px 12px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
        margin-bottom: 12px;
    }

    .feature-item h4 {
        font-size: 14px;
    }

    .feature-item p {
        font-size: 12px;
    }

    .about-section,
    .collections-section,
    .category-section,
    .products-section,
    .why-section,
    .testimonials-section,
    .process-section,
    .gallery-section,
    .newsletter-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 12px;
    }

    .section-header .section-desc {
        font-size: 13px;
    }

    /* About */
    .about-grid {
        gap: 30px;
    }

    .about-img-main img {
        height: 300px;
    }

    .about-img-secondary {
        display: none;
    }

    .experience-badge {
        left: 10px;
        bottom: 20px;
        padding: 14px;
    }

    .exp-number {
        font-size: 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .about-text {
        font-size: 14px;
    }

    /* Collections */
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .collection-img {
        height: 240px;
    }

    /* Category */
    .category-video-wrapper img {
        height: 300px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-icon-wrap {
        width: 56px;
        height: 56px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 22px;
    }

    /* Products */
    .product-filters {
        gap: 8px;
        margin-bottom: 30px;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 13px;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .product-img {
        height: 200px;
    }

    .product-info {
        padding: 14px;
    }

    .product-info h4 {
        font-size: 14px;
    }

    .current-price {
        font-size: 16px;
    }

    /* Offer banner */
    .offer-banner {
        padding: 60px 0;
    }

    .offer-content h2 {
        font-size: 26px;
    }

    .offer-content p {
        font-size: 14px;
    }

    .offer-timer {
        flex-wrap: wrap;
        gap: 10px;
    }

    .timer-item {
        min-width: 65px;
        padding: 10px 14px;
    }

    .timer-num {
        font-size: 24px;
    }

    .timer-sep {
        font-size: 20px;
    }

    /* Why section */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-card {
        padding: 28px 20px;
    }

    .why-icon {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }

    /* Testimonials */
    .testimonials-track {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-card {
        padding: 24px;
    }

    /* Process */
    .process-timeline::before {
        left: 28px;
    }

    .step-number {
        min-width: 56px;
        height: 56px;
        font-size: 20px;
    }

    .process-step {
        gap: 16px;
        margin-bottom: 30px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    .step-content p {
        font-size: 13px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        height: 160px;
    }

    /* Contact Map */
    .contact-map {
        height: 350px;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        padding: 14px 20px;
    }

    .newsletter-form .btn-primary {
        width: 100%;
        justify-content: center;
    }

    /* Brands */
    .brands-section {
        padding: 30px 0;
    }

    .brand-item {
        font-size: 18px;
    }

    /* Footer */
    .footer {
        padding: 50px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col h4 {
        margin-bottom: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Back to top */
    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
    }
}

/* Extra small devices */
@media (max-width: 380px) {
    .hero h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-img {
        height: 240px;
    }

    .offer-content h2 {
        font-size: 22px;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
}