/* En Vogue - Modern Elegant Jewelry Store */

:root {
    --primary-gold: #C9A86A;
    --dark-gold: #A88D5F;
    --light-gold: #F5EFE6;
    --black: #1A1A1A;
    --white: #FFFFFF;
    --gray-dark: #4A4A4A;
    --gray-medium: #757575;
    --gray-light: #F8F8F8;
    --border-color: #E5E5E5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--black);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

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

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--primary-gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-dark);
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.dropdown-icon {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.nav-links li:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    min-width: 220px;
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    color: var(--gray-dark);
    transition: var(--transition);
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--gray-light);
    color: var(--primary-gold);
    padding-left: 1.75rem;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--gray-dark);
    transition: var(--transition);
}

.icon-btn:hover {
    color: var(--primary-gold);
}

.icon-btn svg {
    width: 22px;
    height: 22px;
}

.mobile-menu-btn {
    display: none;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-images-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    opacity: 0.3;
}

.hero-image-item {
    position: relative;
    overflow: hidden;
    animation: heroImageFloat 20s ease-in-out infinite;
    animation-delay: var(--delay);
}

.hero-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

@keyframes heroImageFloat {

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.7) 70%);
}

.hero-content {
    max-width: 1200px;
    padding: 4rem 2rem;
    text-align: center;
    z-index: 2;
    position: relative;
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(201, 168, 106, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 50px;
    color: var(--primary-gold);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(201, 168, 106, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(201, 168, 106, 0);
    }
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-title-line {
    display: block;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #f4e4c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 3s ease-in-out infinite;
}

@keyframes titleShine {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3);
    }
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator svg {
    width: 20px;
    height: 20px;
}

@keyframes scrollBounce {

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

    50% {
        transform: translateY(10px);
    }
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--white);
    border: 2px solid var(--primary-gold);
}

.btn-primary:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 168, 106, 0.3);
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.section-description {
    color: var(--gray-medium);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Loading Spinner */
.loading-spinner {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    gap: 1rem;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--light-gold);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-spinner p {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

/* Reels Section */
.reels-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

.reels-container::-webkit-scrollbar {
    height: 8px;
}

.reels-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.reels-container::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 10px;
}

.reels-container::-webkit-scrollbar-thumb:hover {
    background: #b8964d;
}

.reel-item {
    position: relative;
    flex: 0 0 280px;
    aspect-ratio: 9 / 16;
    background: var(--bg-dark);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.reel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(201, 168, 106, 0.2);
}

.reel-iframe-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.reel-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

/* Social Follow Section */
.social-follow-section {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.1) 0%, rgba(201, 168, 106, 0.05) 100%);
    border-radius: 16px;
}

.follow-text {
    font-size: 1.125rem;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.social-follow-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.social-follow-btn svg {
    width: 24px;
    height: 24px;
}

.social-follow-btn.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0c63d4 100%);
}

.social-follow-btn.facebook:hover {
    background: linear-gradient(135deg, #0c63d4 0%, #084a9e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.social-follow-btn.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-follow-btn.instagram:hover {
    background: linear-gradient(135deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #a0168a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

@media (max-width: 768px) {
    .reels-container {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .reel-item {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .reels-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.category-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    background: var(--gray-light);
}

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

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--white);
}

.category-name {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.category-count {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Category Showcase */
#category-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-showcase-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.category-showcase-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.2);
}

.showcase-image {
    position: relative;
    padding-top: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    overflow: hidden;
}

.showcase-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-showcase-card:hover .showcase-image img {
    transform: scale(1.1) rotate(2deg);
}

.showcase-info {
    padding: 1.5rem;
}

.showcase-category {
    display: block;
    font-size: 1.125rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-gold);
}

.showcase-product-name {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-dark);
    margin: 0.75rem 0;
    line-height: 1.4;
    min-height: 2.4rem;
}

.showcase-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.price-current {
    display: flex;
    align-items: center;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--black);
}

.price-current svg {
    color: var(--primary-gold);
}

.price-original {
    font-size: 1rem;
    color: var(--gray-medium);
    text-decoration: line-through;
}

/* Product Card Enhancements */
.product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.product-card:hover {
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
    transform: translateY(-6px);
    border-color: var(--primary-gold);
}

.product-image {
    position: relative;
    padding-top: 125%;
    background: var(--gray-light);
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-gold);
    color: var(--white);
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 2px;
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.75rem;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars svg,
.star {
    width: 14px;
    height: 14px;
    fill: var(--primary-gold);
}

.stars svg {
    color: var(--primary-gold);
    fill: currentColor;
    filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.3));
    transition: all 0.2s ease;
}

.star svg {
    fill: var(--primary-gold);
    filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.3));
    transition: all 0.2s ease;
}

.star:hover svg {
    fill: #f4c430;
    filter: drop-shadow(0 0 4px rgba(244, 196, 48, 0.5));
}

.star.filled svg {
    fill: var(--primary-gold);
}

.rating-count {
    font-size: 0.875rem;
    color: var(--gray-medium);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.price-current {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
}

.price-current svg {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    color: var(--primary-gold);
}

.price-original {
    font-size: 1rem;
    color: var(--gray-medium);
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-small svg {
    width: 16px;
    height: 16px;
}

/* Features */
.features {
    background: var(--gray-light);
}

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

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

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-gold);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gold);
    border-radius: 50%;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-gold);
}

.contact-details h4 {
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--gray-medium);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-dark);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    border-color: var(--primary-gold);
    background: var(--primary-gold);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
    color: var(--black);
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: var(--primary-gold);
    flex-shrink: 0;
    margin-left: 1rem;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-medium);
    line-height: 1.8;
}

/* Product Detail Page */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.product-images {
    height: fit-content;
}

.main-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.75rem;
}

.thumbnail {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    aspect-ratio: 1;
    object-fit: cover;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-gold);
}

.breadcrumb {
    color: var(--gray-medium);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--gray-medium);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary-gold);
}

.product-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.star {
    width: 18px;
    height: 18px;
    fill: var(--border-color);
    stroke: var(--border-color);
}

.star.filled {
    fill: var(--primary-gold);
    stroke: var(--primary-gold);
}

.rating-text {
    font-weight: 500;
}

.review-count {
    color: var(--gray-medium);
    font-size: 0.875rem;
}

.product-subtitle {
    background: var(--light-gold);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--gray-medium);
    font-size: 1.25rem;
}

.current-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--black);
}

.discount-badge {
    background: #E53935;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.tax-note {
    color: var(--gray-medium);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.product-description {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.btn-block {
    width: 100%;
}

.product-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--gray-light);
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.product-specifications {
    margin-bottom: 2rem;
}

.product-specifications h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.product-specifications table {
    width: 100%;
    border-collapse: collapse;
}

.product-specifications tr {
    border-bottom: 1px solid var(--border-color);
}

.product-specifications td {
    padding: 0.75rem 0;
}

.product-specifications td:first-child {
    font-weight: 500;
    width: 30%;
}

.spec-note {
    color: var(--gray-medium);
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 1rem;
}

.product-policies {
    display: flex;
    gap: 0.75rem;
}

.policy-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
}

.policy-btn:hover {
    border-color: var(--primary-gold);
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 168, 106, 0.2);
}

.policy-btn:active {
    transform: translateY(0);
}

.policy-btn.active {
    border-color: var(--primary-gold);
    background: var(--primary-gold);
    color: white;
}

.policy-btn.active svg {
    stroke: white;
}

.policy-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.policy-content {
    display: none;
    margin-top: 1rem;
    padding: 1.5rem;
    background: var(--light-gold);
    border: 1px solid var(--primary-gold);
    border-radius: 8px;
    animation: slideDown 0.3s ease;
}

.policy-content.active {
    display: block;
}

.policy-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.policy-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.policy-content li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-reviews-section {
    grid-column: 1 / -1;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.product-reviews-section h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.reviews-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.average-rating {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.rating-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
}

.rating-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.review-count {
    color: var(--gray-medium);
    font-size: 0.875rem;
}

.reviews-list {
    display: grid;
    gap: 1.25rem;
}

.review-item {
    padding: 1.75rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.review-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-gold);
}

.hidden-review {
    display: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b8935a 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.reviewer-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.reviewer-name {
    font-size: 1rem;
    color: var(--primary-black);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.verified-badge svg {
    width: 12px;
    height: 12px;
}

.review-date {
    color: var(--gray-medium);
    font-size: 0.8125rem;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
}

.review-text {
    color: var(--gray-dark);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.reviews-button-container {
    text-align: center;
    margin-top: 2rem;
}

.reviews-button-container .btn {
    min-width: 200px;
}

/* Facebook Reviews Grid */
/* Reviews Carousel */
.reviews-carousel-wrapper {
    position: relative;
    max-width: 550px;
    margin: 0 auto;
    padding: 0 50px;
}

.reviews-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.review-slide.active {
    display: flex;
    justify-content: center;
}

.review-slide iframe {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--primary-gold);
    width: 30px;
    border-radius: 5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-images-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-images-grid {
        grid-template-columns: repeat(3, 1fr);
        opacity: 0.2;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-stat-divider {
        height: 30px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        padding: 1rem 2rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .categories-grid,
    .products-grid,
    .features-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .reviews-carousel-wrapper {
        padding: 0 40px;
    }

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

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-images {
        position: static;
    }

    .policy-btn {
        flex-direction: column;
        font-size: 0.75rem;
    }
}