:root {
    --gold: #D4AF37;
    --gold-light: #F8E7A1;
    --gold-dark: #A8741A;
    --ivory: #FAF8F3;
    --champagne: #F5E6C8;
    --beige: #EFE7DA;
    --black: #0A0A0A;
    --white: #FFFFFF;
    --gray: #666;
    --light-gray: #999;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', Arial, sans-serif;

    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 20px 60px rgba(10, 10, 10, 0.08);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--black);
    background: var(--ivory);
    font-weight: 300;
    line-height: 1.8;
    overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

.section { padding: 100px 0; }
.bg-ivory { background: var(--ivory); }

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

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--gray);
    max-width: 520px;
    margin: 0 auto;
}

.btn-gold, .btn-outline {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: var(--black);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark), var(--gold-dark));
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}
.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

/* Top Bar */
.akelixa-top-bar {
    background: var(--black);
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: 1px;
    padding: 8px 0;
}

.akelixa-top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-links { display: flex; gap: 24px; }
.top-bar-links a { color: var(--gold-light); opacity: 0.7; }
.top-bar-links a:hover { opacity: 1; }

/* Header */
.akelixa-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 248, 243, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.site-branding {
    display: flex;
    align-items: center;
}

.custom-logo-link {
    display: flex;
    align-items: center;
}

.custom-logo {
    max-height: 50px;
    width: auto;
    border-radius: 4px;
}

.site-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--black);
}

.main-navigation .primary-menu {
    display: flex;
    list-style: none;
    gap: 36px;
}

.main-navigation a {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 400;
    position: relative;
}
.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}
.main-navigation a:hover::after { width: 100%; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions button, .header-actions a {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    color: var(--black);
}

.akelixa-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 18px;
    height: 18px;
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: var(--transition);
}

/* Search Overlay */
.search-overlay {
    display: none;
    padding: 20px 0;
    background: var(--ivory);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}
.search-overlay.active { display: block; }

.search-form {
    display: flex;
    gap: 12px;
    align-items: center;
}
.search-field {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--beige);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}
.search-field:focus { border-color: var(--gold); }
.search-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--black);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--black);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s;
}
.hero-slide.active { opacity: 1; }

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 20%, rgba(248, 231, 161, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, var(--black) 0%, #1a1a1a 50%, var(--black) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 24px;
    animation: fadeInUp 1s 0.3s both;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 80px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
    animation: fadeInUp 1s 0.5s both;
}

.hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 440px;
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 1s 0.7s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    animation: fadeInUp 1s 0.9s both;
}

.hero-actions .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}
.hero-actions .btn-outline:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
    100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--white);
    transition: var(--transition);
    text-align: center;
}

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

.category-placeholder {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--ivory), var(--champagne));
    transition: var(--transition);
}

.category-card:hover .category-placeholder {
    background: linear-gradient(145deg, var(--champagne), var(--gold-light));
}

.category-icon { color: var(--gold); opacity: 0.5; }

.category-info {
    padding: 24px 16px;
}

.category-info h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.category-link {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

/* Products Carousel */
.products-carousel {
    position: relative;
}

.carousel-wrapper {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
}
.carousel-wrapper::-webkit-scrollbar { height: 4px; }
.carousel-wrapper::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
.carousel-wrapper::-webkit-scrollbar-track { background: var(--beige); }

.product-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--white);
    transition: var(--transition);
}

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

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--ivory);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
}

.product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: translateY(100%);
    transition: var(--transition);
}

.product-card:hover .product-actions { transform: translateY(0); }

.add-to-cart-btn, .quick-view-btn {
    padding: 14px;
    border: none;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart-btn {
    background: var(--black);
    color: var(--white);
}
.add-to-cart-btn:hover { background: var(--gold); color: var(--black); }

.quick-view-btn {
    background: var(--white);
    color: var(--black);
}
.quick-view-btn:hover { background: var(--beige); }

.product-info {
    padding: 20px;
    text-align: center;
}

.product-category {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light-gray);
    display: block;
    margin-bottom: 8px;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-price {
    font-size: 15px;
    color: var(--gold);
    font-weight: 500;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.carousel-nav button {
    width: 48px;
    height: 48px;
    border: 1px solid var(--beige);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav button:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

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

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* Featured Collection */
.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.featured-text { max-width: 520px; }

.featured-benefits {
    list-style: none;
    margin: 32px 0;
}

.featured-benefits li {
    padding: 12px 0;
    border-bottom: 1px solid var(--beige);
    font-size: 14px;
    position: relative;
    padding-left: 28px;
}
.featured-benefits li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.featured-image {
    display: flex;
    justify-content: center;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 60px;
    text-align: center;
}

.glass-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.glass-label {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    color: var(--black);
}

.glass-price {
    font-size: 24px;
    color: var(--gold);
    font-weight: 600;
}

/* Glass Card in Newsletter */
.newsletter-card.glass-card {
    padding: 80px;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-inner {
    text-align: center;
}

.newsletter-inner p {
    color: var(--gray);
    margin-bottom: 32px;
}

.newsletter-form.inline {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form.inline input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid var(--beige);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 14px;
    outline: none;
}

.newsletter-form.inline input:focus { border-color: var(--gold); }

/* Why Us */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.why-us-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    transition: var(--transition);
}

.why-us-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.why-us-icon {
    margin-bottom: 20px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(248, 231, 161, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-us-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-us-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
}

/* Before & After */
.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ba-card {
    background: var(--white);
    padding: 24px;
    text-align: center;
}

.ba-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
}

.ba-placeholder {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ivory), var(--beige));
    font-family: var(--font-serif);
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--gray);
    text-transform: uppercase;
}

.ba-placeholder.after {
    background: linear-gradient(135deg, var(--champagne), var(--gold-light));
    color: var(--gold-dark);
}

.ba-result {
    font-size: 13px;
    color: var(--gray);
    font-style: italic;
}

/* Reviews */
.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--white);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.review-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
}

.review-text {
    font-family: var(--font-serif);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 14px;
    color: var(--black);
}

.review-author div {
    text-align: left;
}

.review-author strong {
    display: block;
    font-size: 14px;
}

.review-author span {
    font-size: 12px;
    color: var(--light-gray);
}

/* Instagram Grid */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}

.insta-item {
    aspect-ratio: 1;
    overflow: hidden;
    display: block;
}

.insta-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.insta-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.insta-item:hover .insta-image-wrap img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.insta-overlay svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* Newsletter Section (homepage) */
.newsletter-section {
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
}

.newsletter-section .section-subtitle { color: var(--gold-light); }
.newsletter-section .section-title { color: var(--white); }

/* Footer - Luxury Edition */
.akelixa-footer {
    background: #050505;
    color: rgba(255, 255, 255, 0.65);
    position: relative;
    font-weight: 300;
}

.footer-top-divider {
    text-align: center;
    padding: 40px 0 0;
}

.divider-icon {
    font-size: 14px;
    color: var(--gold);
    opacity: 0.5;
    letter-spacing: 8px;
}

/* Newsletter */
.footer-newsletter {
    padding: 70px 0 60px;
    text-align: center;
    position: relative;
}

.footer-newsletter::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.newsletter-inner-wrap {
    max-width: 580px;
    margin: 0 auto;
}

.footer-subtitle {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
}

.footer-newsletter-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.footer-newsletter-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    line-height: 1.7;
}

.footer-newsletter-form {
    max-width: 460px;
    margin: 0 auto;
}

.newsletter-input-wrap {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.newsletter-input-wrap:focus-within {
    border-bottom-color: var(--gold);
}

.newsletter-input-wrap input {
    flex: 1;
    padding: 16px 0;
    border: none;
    background: transparent;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 13px;
    outline: none;
    letter-spacing: 0.5px;
}

.newsletter-input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.2);
    font-style: italic;
    font-size: 12px;
}

.btn-subscribe {
    padding: 16px 0 16px 24px;
    background: transparent;
    border: none;
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    white-space: nowrap;
}

.btn-subscribe:hover {
    color: var(--gold-light);
    letter-spacing: 4px;
}

/* Main Footer */
.footer-main {
    padding: 70px 0 50px;
}

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

.footer-brand-col {
    padding-right: 40px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img {
    filter: brightness(0) invert(1);
    opacity: 0.85;
    max-width: 150px;
    height: auto;
    transition: var(--transition);
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-tagline {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 28px;
    max-width: 280px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.06);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
    transform: translateY(-2px);
}

.footer-col-title {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-links span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(3px);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.footer-contact-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.gold-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Footer Bottom */
.footer-bottom {
    padding: 0 0 32px;
}

.footer-bottom-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
    margin-bottom: 28px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 16px;
}

.payment-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
}

.payment-icons {
    display: flex;
    gap: 6px;
}

.payment-icons svg {
    border-radius: 3px;
    opacity: 0.4;
    transition: var(--transition);
}

.payment-icons svg:hover {
    opacity: 0.7;
}

.footer-legal {
    text-align: right;
}

.footer-nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    justify-content: flex-end;
}

.footer-nav-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

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

.nav-divider {
    color: rgba(255, 255, 255, 0.1);
    font-size: 10px;
}

.copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 0.5px;
}

/* Back to Top */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .why-us-grid { grid-template-columns: repeat(3, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-carousel { grid-template-columns: repeat(2, 1fr); }
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .featured-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 56px; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--ivory);
        padding: 20px;
        border-bottom: 1px solid var(--beige);
        z-index: 999;
    }
    .main-navigation.active { display: block; }
    .main-navigation .primary-menu { flex-direction: column; gap: 16px; }

    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .ba-grid { grid-template-columns: 1fr; }
    .reviews-carousel { grid-template-columns: 1fr; }
    .insta-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 40px; }
    .section-title { font-size: 32px; }
    .section { padding: 60px 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; gap: 16px; }
    .footer-legal { text-align: center; }
    .footer-nav { justify-content: center; }
    .top-bar-links { display: none; }
    .top-bar-text { text-align: center; width: 100%; font-size: 10px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-card.glass-card { padding: 32px; }
    .glass-card { padding: 32px; }
    .hero-actions { flex-direction: column; }
    .featured-collection .featured-content { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 32px; }
    .categories-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .insta-grid { grid-template-columns: repeat(2, 1fr); }
}

/* WooCommerce Overrides */
/* Shop Hero */
.shop-hero { padding: 100px 0 60px; text-align: center; background: linear-gradient(180deg, var(--ivory) 0%, var(--white) 100%); position: relative; }
.shop-hero-title { font-family: var(--font-serif); font-size: 52px; font-weight: 600; color: var(--black); margin-top: 12px; }
.shop-hero-desc { font-size: 16px; color: var(--gray); max-width: 500px; margin: 12px auto 0; line-height: 1.6; }

.shop-categories-bar { border-top: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06); background: var(--white); position: sticky; top: 80px; z-index: 10; }
.shop-cat-filters { display: flex; gap: 4px; padding: 16px 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.shop-cat-filter { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; padding: 8px 20px; border-radius: 50px; color: var(--gray); white-space: nowrap; transition: var(--transition); font-weight: 500; }
.shop-cat-filter:hover { color: var(--gold); background: var(--ivory); }
.shop-cat-filter.active { background: var(--gold); color: var(--white); }

.shop-products-section { padding: 40px 0 80px; }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.shop-toolbar-left { display: flex; align-items: center; gap: 16px; }
.woocommerce-result-count { font-size: 13px; color: var(--gray); }
.woocommerce-ordering { margin: 0; }
.woocommerce-ordering select { padding: 10px 36px 10px 16px; border: 1px solid var(--beige); background: var(--white); font-family: var(--font-sans); font-size: 13px; outline: none; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; border-radius: 6px; cursor: pointer; }
.woocommerce-ordering select:focus { border-color: var(--gold); }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { background: var(--white); border-radius: 12px; overflow: hidden; transition: transform 0.4s ease, box-shadow 0.4s ease; list-style: none; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }

.product-card-image { position: relative; overflow: hidden; background: var(--ivory); }
.product-card-image a { display: block; }
.product-card-image img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-card-image img { transform: scale(1.05); }

.product-badge { position: absolute; top: 12px; left: 12px; z-index: 2; padding: 4px 12px; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; border-radius: 50px; }
.product-badge.sale { background: var(--gold); color: var(--black); }
.product-badge.soldout { background: var(--black); color: var(--white); }

.product-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; display: flex; gap: 8px; transform: translateY(100%); transition: transform 0.4s ease; z-index: 3; }
.product-card:hover .product-card-overlay { transform: translateY(0); }

.product-quick-add { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 16px; background: var(--black); color: var(--white); border: none; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; border-radius: 8px; transition: var(--transition); }
.product-quick-add:hover { background: var(--gold); color: var(--black); }

.yith-wcwl-add-to-wishlist { margin: 0 !important; }
.yith-wcwl-add-to-wishlist a { display: flex !important; align-items: center; justify-content: center; width: 44px; height: 44px; background: var(--white); border-radius: 8px; transition: var(--transition); }
.yith-wcwl-add-to-wishlist a:hover { background: var(--gold); }
.yith-wcwl-add-to-wishlist .yith-wcwl-icon { margin: 0 !important; }
.yith-wcwl-add-to-wishlist .feedback { display: none !important; }

.product-card-info { padding: 20px 20px 24px; }
.product-card-category { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--light-gray); display: block; margin-bottom: 6px; }
.product-card-category a { color: var(--light-gray); }
.product-card-category a:hover { color: var(--gold); }
.product-card-title { font-family: var(--font-serif); font-size: 17px; font-weight: 600; margin-bottom: 6px; line-height: 1.3; }
.product-card-title a { color: var(--black); transition: color 0.3s ease; }
.product-card-title a:hover { color: var(--gold); }
.product-card-price { font-size: 16px; color: var(--gold); font-weight: 500; }
.product-card-price del { color: var(--light-gray); font-size: 13px; }
.product-card-price ins { text-decoration: none; }
.product-card-rating { display: flex; align-items: center; gap: 6px; margin-top: 8px; }
.product-card-rating .star-rating { margin: 0; font-size: 12px; }
.product-card-rating .rating-count { font-size: 11px; color: var(--light-gray); }

.shop-pagination { margin-top: 48px; text-align: center; }
.woocommerce-pagination .page-numbers { display: inline-flex; gap: 8px; list-style: none; padding: 0; }
.woocommerce-pagination .page-numbers li span, .woocommerce-pagination .page-numbers li a { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; font-size: 13px; font-weight: 500; color: var(--black); transition: var(--transition); border: none; }
.woocommerce-pagination .page-numbers li a:hover { background: var(--ivory); color: var(--gold); }
.woocommerce-pagination .page-numbers li span.current { background: var(--gold); color: var(--white); }

.shop-empty { text-align: center; padding: 100px 20px; }
.shop-empty h3 { font-family: var(--font-serif); font-size: 28px; margin: 20px 0 10px; }
.shop-empty p { color: var(--gray); margin-bottom: 24px; }

.shop-cta { padding: 80px 0; text-align: center; }
.shop-cta-inner { max-width: 550px; margin: 0 auto; }
.shop-cta-inner p { color: var(--gray); margin-bottom: 28px; }

/* Single Product */
.single-product-wrap { padding: 40px 0 80px; }
.single-product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.single-product-gallery .woocommerce-product-gallery { margin: 0; }
.single-product-gallery .flex-viewport { border-radius: 16px; overflow: hidden; background: var(--ivory); }
.single-product-gallery .flex-control-thumbs { gap: 8px; margin-top: 12px; }
.single-product-gallery .flex-control-thumbs li { padding: 0; }
.single-product-gallery .flex-control-thumbs img { border-radius: 8px; border: 2px solid transparent; transition: var(--transition); }
.single-product-gallery .flex-control-thumbs img.flex-active { border-color: var(--gold); }
.single-product-summary .summary.entry-summary { padding: 0; }
.single-product-summary .product_title { font-family: var(--font-serif); font-size: 36px; font-weight: 600; margin-bottom: 12px; }
.single-product-summary .price { font-size: 24px; color: var(--gold); font-weight: 500; margin-bottom: 20px; }
.single-product-summary .price del { color: var(--light-gray); font-size: 18px; }
.single-product-summary .price ins { text-decoration: none; }
.single-product-summary .description { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 24px; }
.single-product-summary .cart { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.single-product-summary .quantity { display: flex; align-items: center; border: 1px solid var(--beige); border-radius: 8px; overflow: hidden; }
.single-product-summary .quantity input { width: 60px; padding: 14px; text-align: center; border: none; font-family: var(--font-sans); font-size: 14px; outline: none; }
.single-product-summary .single_add_to_cart_button { flex: 1; padding: 16px 40px; background: var(--black); color: var(--white); border: none; font-family: var(--font-sans); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; border-radius: 8px; transition: var(--transition); }
.single-product-summary .single_add_to_cart_button:hover { background: var(--gold); color: var(--black); }

.product-usp { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 32px; padding: 24px; background: var(--ivory); border-radius: 12px; }
.usp-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gray); }
.usp-item svg { flex-shrink: 0; }

.product_meta { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--beige); font-size: 13px; }
.product_meta > span { display: block; margin-bottom: 8px; color: var(--gray); }
.product_meta a { color: var(--black); transition: var(--transition); }
.product_meta a:hover { color: var(--gold); }

.single-product-tabs { margin-top: 60px; }
.woocommerce-tabs { margin: 0; }
.woocommerce-tabs .tabs { display: flex; gap: 0; list-style: none; border-bottom: 1px solid var(--beige); margin-bottom: 32px; padding: 0; }
.woocommerce-tabs .tabs li { margin: 0; }
.woocommerce-tabs .tabs li a { display: block; padding: 16px 32px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); border-bottom: 2px solid transparent; transition: var(--transition); }
.woocommerce-tabs .tabs li.active a { color: var(--black); border-bottom-color: var(--gold); }
.woocommerce-tabs .panel { font-size: 15px; color: var(--gray); line-height: 1.8; }
.woocommerce-tabs .panel h2 { font-family: var(--font-serif); font-size: 24px; margin-bottom: 16px; color: var(--black); }

.related.products { margin-top: 80px; padding-top: 60px; border-top: 1px solid var(--beige); }
.related.products h2 { font-family: var(--font-serif); font-size: 32px; text-align: center; margin-bottom: 40px; }
.related.products .products-grid { grid-template-columns: repeat(4, 1fr); }

.woocommerce-notices-wrapper { margin-bottom: 24px; }
.woocommerce-message, .woocommerce-info { padding: 16px 20px; border: 1px solid var(--beige); background: var(--white); font-size: 14px; margin-bottom: 12px; border-radius: 8px; }
.woocommerce-message { border-left: 3px solid var(--gold); }
.woocommerce-error { padding: 16px 20px; border-left: 3px solid #e74c3c; background: #fdf0ef; font-size: 14px; margin-bottom: 12px; list-style: none; border-radius: 8px; }

/* Cart */
.woocommerce-cart { padding-bottom: 80px; }
.woocommerce-cart .page-hero { padding: 60px 0; text-align: center; }
.woocommerce-cart .page-hero .page-title { font-family: var(--font-serif); font-size: 42px; font-weight: 600; }
.woocommerce-cart-form { margin-bottom: 40px; }
.shop_table { width: 100%; border-collapse: collapse; }
.shop_table th { padding: 16px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; border-bottom: 1px solid var(--beige); text-align: left; }
.shop_table td { padding: 16px; border-bottom: 1px solid var(--beige); vertical-align: middle; }
.shop_table .product-thumbnail img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; }
.shop_table .product-name a { font-family: var(--font-serif); font-size: 18px; color: var(--black); }
.shop_table .product-name a:hover { color: var(--gold); }
.shop_table .quantity input { width: 50px; padding: 8px; text-align: center; border: 1px solid var(--beige); font-size: 14px; border-radius: 4px; }
.coupon { display: flex; gap: 12px; }
.coupon input { padding: 12px 16px; border: 1px solid var(--beige); font-size: 14px; flex: 1; outline: none; border-radius: 8px; }
.coupon input:focus { border-color: var(--gold); }
.coupon button, .shop_table .actions button { padding: 12px 24px; background: var(--black); color: var(--white); border: none; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; border-radius: 8px; transition: var(--transition); }
.coupon button:hover, .shop_table .actions button:hover { background: var(--gold); color: var(--black); }
.cart-collaterals { margin-top: 40px; }
.cart_totals { max-width: 480px; margin-left: auto; }
.cart_totals h2 { font-family: var(--font-serif); font-size: 24px; margin-bottom: 24px; }
.cart_totals .shop_table th, .cart_totals .shop_table td { padding: 16px; }
.wc-proceed-to-checkout .checkout-button { display: block; padding: 16px; background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark)); color: var(--black); text-align: center; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; border-radius: 8px; transition: var(--transition); }
.wc-proceed-to-checkout .checkout-button:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* Checkout */
.woocommerce-checkout .page-hero { padding: 60px 0; text-align: center; }
.woocommerce-checkout .page-hero .page-title { font-family: var(--font-serif); font-size: 42px; font-weight: 600; }
.woocommerce-checkout #customer_details { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.woocommerce-checkout .col2-set .col-1, .woocommerce-checkout .col2-set .col-2 { width: 100%; }
.woocommerce-checkout h3 { font-family: var(--font-serif); font-size: 24px; margin-bottom: 24px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; font-weight: 500; }
.form-row input, .form-row textarea, .form-row select { width: 100%; padding: 14px 16px; border: 1px solid var(--beige); font-family: var(--font-sans); font-size: 14px; outline: none; transition: var(--transition); background: var(--white); border-radius: 8px; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { border-color: var(--gold); }
.select2-container .select2-selection--single { height: 48px; border: 1px solid var(--beige); border-radius: 8px; padding: 8px; }
.select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 32px; }
#order_review { margin-top: 40px; }
#payment .payment_methods { list-style: none; margin-bottom: 24px; padding: 0; }
#payment .payment_methods li { padding: 16px; background: var(--white); border: 1px solid var(--beige); margin-bottom: 8px; border-radius: 8px; }
#payment .payment_methods li label { font-size: 14px; font-weight: 500; }
#payment .payment_box { padding: 16px; margin-top: 12px; background: var(--ivory); font-size: 13px; color: var(--gray); border-radius: 8px; }
#place_order { padding: 18px 48px; background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark)); color: var(--black); border: none; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; cursor: pointer; border-radius: 8px; transition: var(--transition); }
#place_order:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* My Account */
.woocommerce-MyAccount-navigation { margin-bottom: 40px; }
.woocommerce-MyAccount-navigation ul { list-style: none; display: flex; gap: 0; border-bottom: 1px solid var(--beige); padding: 0; }
.woocommerce-MyAccount-navigation ul li { margin: 0; }
.woocommerce-MyAccount-navigation ul li a { display: block; padding: 16px 24px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); border-bottom: 2px solid transparent; transition: var(--transition); }
.woocommerce-MyAccount-navigation ul li.is-active a { color: var(--black); border-bottom-color: var(--gold); }
.woocommerce-MyAccount-content { font-size: 15px; line-height: 1.8; }
.woocommerce-MyAccount-content .order { border: 1px solid var(--beige); padding: 24px; margin-bottom: 24px; border-radius: 8px; }
.woocommerce-form__label-for-checkbox { display: flex; align-items: center; gap: 8px; }

/* Wishlist */
.wishlist-title { font-family: var(--font-serif); font-size: 32px; margin-bottom: 32px; text-align: center; }
.wishlist_table { border-radius: 12px; overflow: hidden; }
.wishlist_table .product-price { color: var(--gold); font-weight: 500; }
.wishlist_table .add_to_cart.button { padding: 8px 20px; background: var(--black); color: var(--white); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; border: none; border-radius: 6px; cursor: pointer; transition: var(--transition); }
.wishlist_table .add_to_cart.button:hover { background: var(--gold); color: var(--black); }

/* Variation Swatches */
.variations { margin-bottom: 16px; }
.variations th, .variations td { padding: 8px 0; }
.variations label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); font-weight: 500; }
.variations select { padding: 10px 36px 10px 16px; border: 1px solid var(--beige); border-radius: 6px; font-family: var(--font-sans); font-size: 13px; background: var(--white); appearance: none; -webkit-appearance: none; cursor: pointer; }
.reset_variations { font-size: 11px; color: var(--gold); }

/* Blog */
/* Blog Archive */
.blog-hero {
    padding: 100px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--ivory) 0%, var(--white) 100%);
    position: relative;
}
.blog-hero .page-title {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 600;
    color: var(--black);
    margin-top: 12px;
}
.blog-hero .page-subtitle {
    font-size: 16px;
    color: var(--gray);
    max-width: 500px;
    margin: 12px auto 0;
    line-height: 1.6;
}

.blog-categories-bar {
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    background: var(--white);
    position: sticky;
    top: 80px;
    z-index: 10;
}
.blog-cat-filters {
    display: flex;
    gap: 4px;
    padding: 16px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.cat-filter {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--gray);
    white-space: nowrap;
    transition: var(--transition);
    font-weight: 500;
}
.cat-filter:hover { color: var(--gold); background: var(--ivory); }
.cat-filter.active { background: var(--gold); color: var(--white); }

.blog-posts-section { padding: 60px 0 80px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.blog-thumb { display: block; overflow: hidden; position: relative; }
.blog-thumb img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-thumb-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f6f0 0%, #e8e4dc 100%);
    color: var(--gold);
    opacity: 0.4;
}
.blog-info { padding: 28px 28px 32px; }
.blog-meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.blog-date {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light-gray);
}
.blog-category {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 3px 10px;
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 50px;
    font-weight: 600;
}
.blog-title { font-family: var(--font-serif); font-size: 20px; font-weight: 600; line-height: 1.35; margin-bottom: 10px; }
.blog-title a { color: var(--black); transition: color 0.3s ease; }
.blog-title a:hover { color: var(--gold); }
.blog-excerpt { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-readmore {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 600;
    position: relative;
    padding-bottom: 3px;
    transition: var(--transition);
}
.blog-readmore::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.blog-readmore:hover { color: var(--gold); }
.blog-readmore:hover::after { width: 100%; }

.blog-pagination { margin-top: 60px; text-align: center; }
.blog-pagination .page-numbers {
    display: inline-flex;
    gap: 8px;
    list-style: none;
    padding: 0;
}
.blog-pagination .page-numbers a,
.blog-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
    transition: var(--transition);
}
.blog-pagination .page-numbers a:hover { background: var(--ivory); color: var(--gold); }
.blog-pagination .page-numbers .current { background: var(--gold); color: var(--white); }

.blog-empty { text-align: center; padding: 100px 20px; }
.blog-empty h3 { font-family: var(--font-serif); font-size: 28px; margin: 20px 0 10px; }
.blog-empty p { color: var(--gray); margin-bottom: 24px; }

.blog-cta-section { padding: 80px 0; text-align: center; }
.blog-cta-inner { max-width: 500px; margin: 0 auto; }
.blog-cta-inner p { color: var(--gray); margin-bottom: 24px; }

/* Single Post */
.single-post-article { padding-bottom: 80px; }
.post-hero {
    padding: 100px 0 50px;
    text-align: center;
    background: linear-gradient(180deg, var(--ivory) 0%, var(--white) 100%);
}
.post-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}
.post-category {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    padding: 4px 14px;
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 50px;
}
.post-date {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light-gray);
}
.post-hero-title {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 600;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.2;
}
.post-hero-excerpt {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}
.post-featured-image { margin: 40px 0; }
.post-featured-img {
    width: 100%;
    border-radius: 16px;
    max-height: 500px;
    object-fit: cover;
}
.post-content-wrap .entry-content {
    font-size: 17px;
    line-height: 1.9;
    color: var(--gray);
}
.post-content-wrap .entry-content h2 {
    font-family: var(--font-serif);
    font-size: 30px;
    color: var(--black);
    margin: 50px 0 16px;
}
.post-content-wrap .entry-content h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--black);
    margin: 36px 0 12px;
}
.post-content-wrap .entry-content p { margin-bottom: 20px; }
.post-content-wrap .entry-content ul,
.post-content-wrap .entry-content ol { margin: 0 0 20px 24px; }
.post-content-wrap .entry-content li { margin-bottom: 8px; }
.post-content-wrap .entry-content strong { color: var(--black); }
.post-footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: 48px;
    flex-wrap: wrap;
    gap: 16px;
}
.post-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.tag-label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--light-gray); }
.post-tags a {
    font-size: 11px;
    padding: 4px 12px;
    background: var(--ivory);
    border-radius: 50px;
    color: var(--gray);
    transition: var(--transition);
}
.post-tags a:hover { background: var(--gold); color: var(--white); }
.post-share { display: flex; align-items: center; gap: 10px; }
.share-label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--light-gray); }
.share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ivory);
    color: var(--black);
    transition: var(--transition);
}
.share-link:hover { background: var(--gold); color: var(--white); }

.post-navigation { margin-top: 40px; padding: 32px 0; border-top: 1px solid rgba(0,0,0,0.06); }
.post-nav-links { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center; }
.post-nav-prev { text-align: left; }
.post-nav-next { text-align: right; }
.post-nav-prev a, .post-nav-next a {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 500;
    transition: var(--transition);
}
.post-nav-prev a:hover, .post-nav-next a:hover { color: var(--gold); }
.post-nav-all {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--black);
    padding: 10px 20px;
    border-radius: 50px;
    transition: var(--transition);
}
.post-nav-all:hover { background: var(--gold); color: var(--black); }

/* Comments */
.single-post-article .comment-respond { margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(0,0,0,0.06); }
.single-post-article .comment-reply-title { font-family: var(--font-serif); font-size: 24px; margin-bottom: 16px; }
.single-post-article .comment-form label { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); display: block; margin-bottom: 6px; }
.single-post-article .comment-form input,
.single-post-article .comment-form textarea {
    width: 100%;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 12px 16px;
    border-radius: 8px;
    font-family: var(--font-sans);
    transition: var(--transition);
    margin-bottom: 16px;
}
.single-post-article .comment-form input:focus,
.single-post-article .comment-form textarea:focus { border-color: var(--gold); outline: none; }
.single-post-article .comment-form .submit {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 14px 40px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
}
.single-post-article .comment-form .submit:hover { background: var(--gold); color: var(--black); }
.single-post-article .comment-list { list-style: none; padding: 0; margin: 40px 0; }
.single-post-article .comment { padding: 24px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.single-post-article .comment-author { font-weight: 600; color: var(--black); }
.single-post-article .comment-metadata { font-size: 11px; color: var(--light-gray); letter-spacing: 1px; text-transform: uppercase; }
.single-post-article .comment-content { margin-top: 8px; font-size: 14px; line-height: 1.7; color: var(--gray); }
.single-post-article .reply { margin-top: 8px; }
.single-post-article .reply a { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .woocommerce-checkout #customer_details { grid-template-columns: 1fr; }
    .woocommerce-tabs .tabs { flex-direction: column; }
    .summary.entry-summary { padding: 24px 0; }
}

/* Page Hero */
.page-hero { padding: 80px 0; text-align: center; background: var(--ivory); }
.page-hero .page-title { font-family: var(--font-serif); font-size: 48px; font-weight: 600; }

.page-template { padding-bottom: 80px; }
.page-template .entry-content { max-width: 800px; margin: 40px auto; font-size: 16px; line-height: 1.9; color: var(--gray); }
.page-template .entry-content h1, .page-template .entry-content h2, .page-template .entry-content h3 { font-family: var(--font-serif); color: var(--black); }
.page-template .entry-content h2 { font-size: 28px; margin: 40px 0 16px; }
.page-template .entry-content h3 { font-size: 22px; margin: 32px 0 12px; }

/* About Us Page */
.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--black);
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 40%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 60%, rgba(248, 231, 161, 0.04) 0%, transparent 50%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 80px 0;
}

.about-hero-title {
    font-family: var(--font-serif);
    font-size: 64px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin: 16px 0 24px;
}

.about-hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.9;
    max-width: 560px;
}

.about-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: floatDown 2.5s infinite ease-in-out;
}

@keyframes floatDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* Numbers */
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.number-item {
    padding: 48px 24px;
    background: var(--white);
    transition: var(--transition);
}

.number-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.number-value {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 600;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.number-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}

/* Story */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 20px;
}

.story-card {
    background: linear-gradient(145deg, var(--black), #1a1a1a);
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.story-card-inner h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--white);
    margin: 20px 0 12px;
}

.story-card-inner p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.story-card-icon {
    display: inline-flex;
    padding: 16px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
}

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

.ops-card {
    text-align: center;
    padding: 48px 24px;
    background: var(--white);
    transition: var(--transition);
    border: 1px solid transparent;
}

.ops-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(212, 175, 55, 0.15);
}

.ops-icon {
    margin-bottom: 20px;
    display: inline-flex;
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(248, 231, 161, 0.12));
}

.ops-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.ops-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.8;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    padding: 40px 32px;
    background: var(--white);
    transition: var(--transition);
    position: relative;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.value-number {
    font-family: var(--font-serif);
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.value-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
}

/* About CTA */
.about-cta {
    background: var(--black);
}

.about-cta-card {
    text-align: center;
    padding: 80px 0;
}

.about-cta-card .section-subtitle {
    color: var(--gold-light);
}

@media (max-width: 1024px) {
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .ops-grid { grid-template-columns: repeat(2, 1fr); }
    .about-hero-title { font-size: 48px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .post-hero-title { font-size: 34px; }
    .post-nav-links { grid-template-columns: 1fr; text-align: center; gap: 12px; }
    .post-nav-prev { text-align: center; }
    .post-nav-next { text-align: center; }
}

@media (max-width: 768px) {
    .about-hero-title { font-size: 36px; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; }
    .ops-grid { grid-template-columns: 1fr; }
    .blog-hero { padding: 80px 0 40px; }
    .blog-hero .page-title { font-size: 36px; }
    .blog-categories-bar { top: 70px; }
    .post-hero { padding: 70px 0 30px; }
    .post-hero-title { font-size: 28px; }
    .post-hero-excerpt { font-size: 16px; }
    .post-content-wrap .entry-content { font-size: 16px; }
    .post-footer-meta { flex-direction: column; align-items: flex-start; }
}

/* Contact Page */
.contact-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: var(--black);
}

.contact-hero-content {
    max-width: 650px;
    padding: 60px 0;
}

.contact-hero-title {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin: 16px 0 24px;
}

.contact-hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.9;
    max-width: 520px;
}

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

.contact-card {
    background: var(--white);
    padding: 44px 32px;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.contact-icon {
    display: inline-flex;
    padding: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(248, 231, 161, 0.12));
    margin-bottom: 20px;
}

.contact-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-card p {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--light-gray);
    margin-bottom: 4px;
    margin-top: 12px;
}

.contact-card a {
    font-size: 15px;
    color: var(--black);
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-card span {
    font-size: 14px;
    color: var(--gray);
    display: block;
    line-height: 1.6;
}

/* Form */
.form-wrap {
    max-width: 700px;
    margin: 0 auto;
}

.akelixa-contact-form .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.akelixa-contact-form .form-group {
    margin-bottom: 24px;
}

.akelixa-contact-form label {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 8px;
    font-weight: 500;
}

.akelixa-contact-form input,
.akelixa-contact-form select,
.akelixa-contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--beige);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    color: var(--black);
}

.akelixa-contact-form input:focus,
.akelixa-contact-form select:focus,
.akelixa-contact-form textarea:focus {
    border-color: var(--gold);
}

.akelixa-contact-form input::placeholder,
.akelixa-contact-form textarea::placeholder {
    color: var(--light-gray);
}

.akelixa-contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.akelixa-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.akelixa-contact-form .btn-gold {
    width: 100%;
    text-align: center;
}

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

.location-card {
    background: var(--white);
    padding: 40px 28px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(212, 175, 55, 0.1);
}

.location-city {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    display: block;
    margin-bottom: 4px;
}

.location-role {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
}

.location-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.location-card a {
    font-size: 13px;
    color: var(--black);
}

.location-card a:hover {
    color: var(--gold);
}

@media (max-width: 1024px) {
    .contact-hero-title { font-size: 42px; }
    .contact-grid { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .contact-hero-title { font-size: 36px; }
    .akelixa-contact-form .form-row-2 { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
}

/* FAQ Page */
.faq-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    background: var(--black);
}

.faq-hero-content { max-width: 650px; padding: 60px 0; }

.faq-hero-title {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin: 16px 0 24px;
}

.faq-hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.9;
    max-width: 520px;
}

.faq-categories {
    display: flex;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-tab {
    padding: 10px 24px;
    border: 1px solid var(--beige);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray);
}

.faq-tab.active,
.faq-tab:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    border-bottom: 1px solid var(--beige);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--black);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-question svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
}

.faq-cta-inner {
    text-align: center;
    padding: 60px 0;
}

.faq-cta-inner h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-cta-inner p {
    color: var(--gray);
    margin-bottom: 32px;
    font-size: 15px;
}

@media (max-width: 768px) {
    .faq-hero-title { font-size: 36px; }
}

/* Categories Page */
.cat-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    background: var(--black);
}

.cat-hero-content { max-width: 600px; padding: 60px 0; }

.cat-hero-title {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin: 16px 0 24px;
}

.cat-hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.9;
}

.cat-all-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cat-full-card {
    display: flex;
    gap: 24px;
    padding: 36px;
    background: var(--white);
    transition: var(--transition);
    align-items: flex-start;
}

.cat-full-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.cat-full-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(248, 231, 161, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-full-info h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cat-full-info p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

.cat-full-link {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.cat-featured-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 0;
}

@media (max-width: 768px) {
    .cat-hero-title { font-size: 36px; }
    .cat-all-grid { grid-template-columns: 1fr; }
    .cat-full-card { flex-direction: column; }
}

/* Policy Pages - Style for Terms, Shipping, Privacy, Refund */
.page-template-default .entry-content,
.page-id-19 .entry-content,
.page-id-20 .entry-content,
.page-id-3 .entry-content,
.page-id-10 .entry-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.page-template-default .entry-content h2,
.page-id-19 .entry-content h2,
.page-id-20 .entry-content h2,
.page-id-3 .entry-content h2,
.page-id-10 .entry-content h2 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    margin: 48px 0 16px;
    color: var(--black);
}

.page-template-default .entry-content h2:first-of-type,
.page-id-19 .entry-content h2:first-of-type,
.page-id-20 .entry-content h2:first-of-type,
.page-id-3 .entry-content h2:first-of-type,
.page-id-10 .entry-content h2:first-of-type { margin-top: 0; }

.page-template-default .entry-content h3,
.page-id-19 .entry-content h3,
.page-id-20 .entry-content h3,
.page-id-3 .entry-content h3,
.page-id-10 .entry-content h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    margin: 32px 0 12px;
    color: var(--black);
}

.page-template-default .entry-content p,
.page-id-19 .entry-content p,
.page-id-20 .entry-content p,
.page-id-3 .entry-content p,
.page-id-10 .entry-content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 16px;
}

.page-template-default .entry-content ul,
.page-id-19 .entry-content ul,
.page-id-20 .entry-content ul,
.page-id-3 .entry-content ul,
.page-id-10 .entry-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.page-template-default .entry-content li,
.page-id-19 .entry-content li,
.page-id-20 .entry-content li,
.page-id-3 .entry-content li,
.page-id-10 .entry-content li {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 8px;
}

.page-template-default .entry-content a,
.page-id-19 .entry-content a,
.page-id-20 .entry-content a,
.page-id-3 .entry-content a,
.page-id-10 .entry-content a {
    color: var(--gold);
}

.page-template-default .entry-content a:hover,
.page-id-19 .entry-content a:hover,
.page-id-20 .entry-content a:hover,
.page-id-3 .entry-content a:hover,
.page-id-10 .entry-content a:hover {
    text-decoration: underline;
}

/* Shop Responsive */
@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .related.products .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
    .shop-hero-title { font-size: 42px; }
}
@media (max-width: 900px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .related.products .products-grid { grid-template-columns: repeat(2, 1fr); }
    .single-product-layout { grid-template-columns: 1fr; gap: 40px; }
    .shop-categories-bar { top: 70px; }
    .shop-hero { padding: 80px 0 40px; }
    .shop-hero-title { font-size: 36px; }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .related.products .products-grid { grid-template-columns: 1fr; }
    .shop-toolbar { flex-direction: column; align-items: flex-start; }
}
