:root {
    /* Color Palette */
    --color-bg-dark: #121212;
    --color-bg-card: #1e1e1e;
    --color-accent-red: #d9381e;
    --color-accent-gold: #c5a059;
    --color-text-primary: #f5f5f5;
    --color-text-secondary: #a0a0a0;
    --color-border: #333333;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;

    /* Effects */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 5px 20px rgba(197, 160, 89, 0.2);
    --color-surface: #1a1a1a;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Cinzel:wght@400;600;700&family=Cormorant+Garamond:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.top-banner {
    background-color: var(--color-accent-red);
    color: white;
    text-align: center;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    position: relative;
    /* Scrolls with page */
    left: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: var(--shadow-soft);
    display: block;
    /* For anchor tag */
    text-decoration: none;
    transition: background-color 0.3s;
}

.top-banner:hover {
    background-color: #b52b14;
}

.top-banner span {
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-gold {
    color: var(--color-accent-gold);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--color-accent-red);
    color: white;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.btn:hover {
    background-color: transparent;
    border-color: var(--color-accent-red);
    color: var(--color-accent-red);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-accent-gold);
    color: var(--color-accent-gold);
}

.btn-outline:hover {
    background-color: var(--color-accent-gold);
    color: var(--color-bg-dark);
}

.btn-whatsapp-hero {
    background-color: #25D366;
    color: white;
    border: 1px solid #25D366;
}

.btn-whatsapp-hero:hover {
    background-color: transparent;
    color: #25D366;
    border-color: #25D366;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Header */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Mobile Navigation - Premium Redesign */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--color-accent-gold);
    background: none;
    border: 1px solid var(--color-accent-gold);
    padding: 0.5rem;
    border-radius: 4px;
    /* Slight rounded corners */
    cursor: pointer;
    z-index: 2000;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: var(--color-accent-gold);
    color: black;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    /* Wider for better presence */
    height: 100vh;
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--color-border);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding-bottom: 1rem;
}

.mobile-logo {
    height: 50px;
    width: auto;
}

.close-menu-btn {
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-menu-btn:hover {
    color: var(--color-accent-red);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Remove gap, use padding/border */
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-text-primary);
    display: block;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-menu a:hover {
    color: var(--color-accent-gold);
    padding-left: 10px;
    /* Slide effect */
    border-bottom-color: var(--color-accent-gold);
}

.mobile-socials {
    margin-top: auto;
    /* Push to bottom */
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-socials a {
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    border: none;
    padding: 0;
}

.mobile-socials a:hover {
    color: var(--color-accent-gold);
    transform: translateY(-3px);
    padding: 0;
    border: none;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Badges */
.badge-star {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--color-accent-gold);
    color: black;
    padding: 5px 10px;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.badge-premium {
    position: absolute;
    top: 10px;
    right: 10px;
    background: black;
    color: var(--color-accent-gold);
    padding: 5px 10px;
    font-weight: bold;
    z-index: 10;
    border: 1px solid var(--color-accent-gold);
}

.badge-artesanal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--color-accent-gold);
    color: black;
    padding: 5px 10px;
    font-weight: bold;
    z-index: 10;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.logo span {
    color: var(--color-accent-red);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

nav ul {
    display: flex;
    gap: var(--spacing-md);
}

nav a {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
}

nav a:hover,
nav a.active {
    color: var(--color-accent-gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.4);
}

.hero-content {
    max-width: 700px;
    z-index: 1;
    text-align: left;
    margin-right: auto;
    margin-left: 3rem;
    padding-top: 150px;
}

/* Brand Banner in Hero */
.brand-banner-hero {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    width: 95%;
    max-width: 700px;
}

.brand-banner-hero img {
    width: 100%;
    height: auto;
    display: inline-block;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
}

/* Features Section */
.features {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    border-color: var(--color-accent-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-accent-red);
    margin-bottom: var(--spacing-sm);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--color-text-secondary);
}

/* Products Section */
.products {
    padding: var(--spacing-xl) 0;
    background-color: #000;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-size: 3rem;
    color: var(--color-text-primary);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, #e8d4a0 50%, var(--color-accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent-gold), transparent);
}

.section-header span {
    color: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    display: block;
    margin-bottom: var(--spacing-sm);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.product-card {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
    background-color: var(--color-bg-card);
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-desc {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

/* Custom Order Banner */
.custom-order-banner {
    margin-top: 5rem;
    padding: 0;
}

.banner-content {
    background: linear-gradient(135deg, #d9381e 0%, #b52b14 100%);
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2.5rem;
    align-items: center;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(217, 56, 30, 0.4);
    position: relative;
    overflow: hidden;
}

.banner-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(0, 0, 0, 0.03) 10px,
            rgba(0, 0, 0, 0.03) 20px);
    pointer-events: none;
}

.banner-icon {
    font-size: 4rem;
    color: black;
    animation: pulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.banner-text {
    color: black;
    z-index: 1;
}

.banner-text h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: black;
}

.banner-highlight {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.banner-highlight strong {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.banner-subtext {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.banner-subtext strong {
    font-weight: 700;
}

.banner-cta {
    z-index: 1;
}

.btn-custom-order {
    background-color: black;
    color: var(--color-accent-gold);
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: 3px solid black;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    white-space: nowrap;
}

.btn-custom-order:hover {
    background-color: var(--color-accent-red);
    border-color: var(--color-accent-red);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.btn-custom-order i {
    font-size: 1.3rem;
}

.product-card:hover .product-desc {
    opacity: 1;
}

/* Contact/Footer */
footer {
    padding: var(--spacing-xl) 0 var(--spacing-md);
    background-color: #151515;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

/* Header Socials */
.header-socials {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.header-socials a {
    color: var(--color-text-primary);
    font-size: 1.3rem;
    transition: var(--transition-smooth);
}

.header-socials a:hover {
    color: var(--color-accent-gold);
    transform: translateY(-2px);
}

/* Testimonials */
/* Testimonials */
.testimonials {
    background-color: var(--color-surface);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #1e1e1e;
    /* Solid dark grey for contrast */
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(197, 160, 89, 0.3);
    /* Stronger initial border */
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent-gold);
    background: linear-gradient(145deg, #252525, #1e1e1e);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.15);
}

/* Decorative quote background */
.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 8rem;
    font-family: 'Playfair Display', serif;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}

.testimonial-quote {
    color: #e0e0e0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
}

.author-info h4 {
    color: var(--color-accent-gold);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-heading);
}

.author-stars {
    color: var(--color-accent-gold);
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.footer-col h4 {
    color: var(--color-accent-gold);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}

.footer-col p {
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.contact-highlight {
    font-size: 1.2rem;
    color: var(--color-text-primary) !important;
    font-weight: 700;
    margin: 0.5rem 0;
    display: block;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--color-text-primary);
    font-size: 1.2rem;
}

.copyright {
    text-align: center;
    color: var(--color-text-secondary);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {

    /* Hero Section - Optimized */
    .hero {
        height: 80vh;
        padding-top: calc(var(--header-height) + 1rem);
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }

    /* Header */
    header .container {
        padding: 0 var(--spacing-sm);
    }

    .logo-img {
        height: 45px;
    }

    .header-socials a {
        font-size: 1.1rem;
    }

    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }


    /* Section Spacing */
    .features,
    .products,
    .testimonials {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    /* Brand Banner Hero Mobile */
    .brand-banner-hero {
        width: 90%;
        max-width: 350px;
        top: 1rem;
    }

    .brand-banner-hero img {
        width: 100%;
    }

    /* Hero content mobile - reset margin and padding */
    .hero-content {
        margin-left: 0;
        padding-top: 100px;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 2rem;
    }

    .section-header span {
        font-size: 0.8rem;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    /* Products Grid - Reduced Image Height */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        height: 280px;
    }

    .product-img {
        object-fit: cover;
    }

    .product-overlay {
        padding: 1rem;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.6) 50%, transparent);
    }

    .product-title {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .product-desc {
        font-size: 0.85rem;
        opacity: 1;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Custom Banner Mobile Styles */
    .custom-order-banner {
        margin-top: 2.5rem;
    }

    .banner-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem 1.25rem;
        gap: 1.5rem;
    }

    .banner-icon {
        font-size: 2.5rem;
    }

    .banner-text h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .banner-highlight {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .banner-subtext {
        font-size: 0.95rem;
    }

    .btn-custom-order {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Testimonials */
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-quote {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Review Form */
    .review-cta-container {
        padding: 2rem 1.5rem;
        margin-top: 2.5rem;
    }

    .review-highlight-text {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    /* Footer */
    footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    .contact-highlight {
        font-size: 1rem;
    }
}

/* Extra Small Devices - Ultra Refinement */
@media (max-width: 480px) {

    /* Typography Ultra Fine-tuning */
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    /* Product Cards - Even More Compact */
    .product-card {
        height: 250px;
    }

    .product-title {
        font-size: 1.1rem;
    }

    /* Banner Compact */
    .banner-text h3 {
        font-size: 1.3rem;
    }

    .banner-highlight {
        font-size: 1rem;
    }

    .banner-subtext {
        font-size: 0.9rem;
    }

    /* Testimonials Compact */
    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-quote {
        font-size: 0.95rem;
    }

    /* Review Form Compact */
    .review-cta-container {
        padding: 1.5rem 1rem;
    }

    .review-highlight-text {
        font-size: 1.1rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.85rem;
        font-size: 0.95rem;
    }
}

/* Review CTA & Form */
.review-cta-container {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-left: 4px solid var(--color-accent-gold);
    padding: 3rem;
    margin-top: 4rem;
    border-radius: 4px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.review-highlight-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.review-highlight-text strong {
    color: var(--color-accent-gold);
}

.review-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.9rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input,
.form-textarea {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    padding: 1rem;
    font-family: var(--font-body);
    color: white;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-accent-gold);
    background-color: rgba(197, 160, 89, 0.05);
}

.star-rating {
    display: flex;
    gap: 0.5rem;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating input:checked~label,
.star-rating label:hover,
.star-rating label:hover~label {
    color: var(--color-accent-gold);
}

.btn-submit-review {
    background-color: var(--color-accent-gold);
    color: var(--color-bg-dark);
    padding: 1rem 2rem;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-submit-review:hover {
    background-color: #d4b06a;
    transform: translateY(-2px);
}

/* Feature Item with Image updates */
.feature-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
    display: block;
}

.feature-item {
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.feature-content {
    padding: 2rem;
}