:root {
    /* Colors */
    --color-black: #000000;
    --color-dark-green: #0b3d2c;
    --color-charcoal: #333333;
    --color-gold: #D4AF37;
    --color-bronze: #CD7F32;
    --color-light: #f8f8f8;
    --color-white: #ffffff;
    --color-success: #28a745;
    --color-error: #dc3545;
    --color-whatsapp: #25D366;
    --color-instagram: #E4405F;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Effects */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

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

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 8px;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-dark-green);
    color: var(--color-white);
    border-color: var(--color-dark-green);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--color-dark-green);
    border-color: var(--color-dark-green);
}

.btn-secondary:hover {
    background-color: var(--color-dark-green);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    border-color: var(--color-whatsapp);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp-large {
    display: block;
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    border-radius: var(--border-radius);
    text-align: center;
    margin: 20px 0;
    transition: var(--transition);
}

.btn-whatsapp-large:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* HAMBURGER MENU & CART SYSTEM */

/* Navigation */
.navbar {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--spacing-sm);
    height: 70px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark-green);
    text-decoration: none;
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--color-charcoal);
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-menu a:hover::after {
    width: 100%;
}

.nav-whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--color-white) !important;
    padding: 8px 16px !important;
    border-radius: 4px;
    margin-left: 1rem;
}

.nav-whatsapp:hover {
    background-color: #128C7E;
}

.nav-whatsapp::after {
    display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--color-dark-green);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Cart Buttons */
.desktop-cart, .mobile-cart {
    display: flex;
    align-items: center;
}

.cart-btn {
    position: relative;
    color: var(--color-dark-green);
    font-size: 1.2rem;
    padding: 8px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--color-error);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: white;
    z-index: 999;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-dark-green);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    overflow-y: auto;
}

.mobile-nav-list li {
    border-bottom: 1px solid #eee;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    color: var(--color-dark-green);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-nav-link i {
    width: 20px;
    text-align: center;
    color: var(--color-gold);
}

.mobile-nav-link:hover {
    background: #f8f9fa;
    color: var(--color-dark-green);
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.mobile-menu-cta {
    margin-bottom: 20px;
}

.mobile-order-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 1rem;
    margin-bottom: 10px;
}

.mobile-contact {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.mobile-contact p {
    margin: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    height: 100%;
    background: white;
    z-index: 1001;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.cart-modal.active {
    right: 0;
}

.cart-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-cart-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart {
    text-align: center;
    color: #666;
    padding: 40px 20px;
}

.empty-cart i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #f8f9fa;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
}

.cart-item-details .price {
    margin: 0 0 10px 0;
    color: var(--color-dark-green);
    font-weight: bold;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 5px;
}

.quantity-selector button {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-selector input {
    width: 40px;
    height: 25px;
    border: 1px solid #ddd;
    text-align: center;
    border-radius: 4px;
}

.remove-item {
    background: none;
    border: none;
    color: var(--color-error);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-item-total {
    font-weight: bold;
    color: #333;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.cart-summary {
    margin-bottom: 15px;
}

.cart-summary p {
    margin: 5px 0;
    display: flex;
    justify-content: space-between;
}

.cart-actions {
    display: flex;
    gap: 10px;
}

.cart-actions button {
    flex: 1;
    padding: 12px;
    font-size: 0.9rem;
}

/* Body lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Sticky navbar effects */
.navbar.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

/* HERO SECTION */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1445205170230-053b83016050?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    margin-top: 80px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.brand-message {
    max-width: 600px;
}

.tagline {
    color: var(--color-gold);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.headline {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.subtext {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 400px;
    height: 500px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* SECTIONS COMMON STYLE */
section {
    padding: 80px 0;
    scroll-margin-top: 80px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-dark-green);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-gold);
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 1rem;
    color: var(--color-charcoal);
    font-size: 1.1rem;
}

.deposit-notice {
    text-align: center;
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

/* ABOUT SECTION */
.about {
    background-color: var(--color-light);
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission, .values {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.mission h3, .values h3 {
    color: var(--color-dark-green);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.values ul {
    list-style: none;
}

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

.values li i {
    color: var(--color-gold);
}

/* SERVICES SECTION */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--color-white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--color-gold);
}

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

.service-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--color-dark-green);
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    margin-top: 1.5rem;
    text-align: left;
}

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

.service-list a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.service-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '•';
    color: var(--color-gold);
    position: absolute;
    left: 0;
}

/* PORTFOLIO SECTION */
.catalogue-section h3 {
    color: var(--color-dark-green);
    margin: 3rem 0 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

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

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--color-gold);
    color: var(--color-white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-info h4 {
    color: var(--color-dark-green);
    margin-bottom: 0.5rem;
}

.product-code {
    color: var(--color-gold);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--color-dark-green);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.delivery-time {
    color: var(--color-charcoal);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-info .btn {
    width: 100%;
    margin-top: 0.5rem;
}

.add-to-cart {
    background-color: var(--color-gold);
    color: var(--color-dark-green);
    border-color: var(--color-gold);
}

.add-to-cart:hover {
    background-color: #c29a25;
    border-color: #c29a25;
    color: var(--color-dark-green);
}

/* HOW TO ORDER SECTION */
.how-to-order {
    background-color: var(--color-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--color-gold);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h4 {
    color: var(--color-dark-green);
    margin-bottom: 0.5rem;
}

/* WHY CHOOSE US SECTION */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold);
}

.benefit i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.benefit h4 {
    color: var(--color-dark-green);
    margin-bottom: 0.5rem;
}

.benefit p {
    color: var(--color-charcoal);
    font-size: 0.875rem;
}

/* CONTACT SECTION */
.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.order-form {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.order-form h3 {
    color: var(--color-dark-green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-notice {
    background-color: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--color-gold);
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    color: var(--color-charcoal);
}

.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: var(--border-radius);
}

.form-section h4 {
    color: var(--color-dark-green);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h5 {
    color: var(--color-charcoal);
    margin: 1rem 0 0.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-charcoal);
    font-weight: 500;
    font-size: 0.9rem;
}

input, textarea, select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--color-white);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

input.error, textarea.error, select.error {
    border-color: var(--color-error);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Measurement Form Styles */
.measurement-note {
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: var(--color-charcoal);
}

.measurement-note i {
    color: var(--color-gold);
    margin-right: 0.5rem;
}

.measurement-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-dark-green);
}

.measurement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.measurement-grid .form-group {
    margin-bottom: 1rem;
}

.measurement-unit {
    position: absolute;
    right: 10px;
    top: 35px;
    color: var(--color-gold);
    font-weight: 600;
}

.measurement-help {
    background-color: rgba(37, 211, 102, 0.1);
    border: 1px solid var(--color-whatsapp);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin: 1.5rem 0;
    text-align: center;
}

.measurement-help p {
    margin-bottom: 0.5rem;
    color: var(--color-charcoal);
    font-weight: 500;
}

.btn-help {
    display: inline-block;
    background-color: var(--color-whatsapp);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.btn-help:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.btn-help i {
    margin-right: 0.5rem;
}

.error-message {
    color: var(--color-error);
    font-size: 0.875rem;
    margin-top: 4px;
    min-height: 20px;
    display: none;
}

.policy-agreement {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 2rem 0;
    padding: 1rem;
    background-color: rgba(0,0,0,0.02);
    border-radius: var(--border-radius);
}

.policy-agreement input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.policy-agreement label {
    cursor: pointer;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.form-buttons .btn {
    flex: 1;
    min-width: 200px;
}

/* Sidebar Styles */
.contact-sidebar > * {
    margin-bottom: 2rem;
}

.whatsapp-box, .policies, .contact-info, .measurement-guide {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.whatsapp-box h3, .policies h4, .contact-info h4, .measurement-guide h4 {
    color: var(--color-dark-green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-note {
    text-align: center;
    color: var(--color-charcoal);
    font-size: 0.875rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.measurement-guide ul {
    list-style: none;
    padding: 0;
}

.measurement-guide li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.measurement-guide li i {
    color: var(--color-gold);
}

.policies ul {
    list-style: none;
}

.policies li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.policies li i {
    color: var(--color-gold);
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--color-gold);
    width: 20px;
}

/* FAQ SECTION */
.faq-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--color-white);
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark-green);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(0,0,0,0.02);
}

.faq-question i {
    transition: transform 0.3s ease;
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-charcoal);
}

.pricing-table {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.pricing-table h3 {
    color: var(--color-dark-green);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.price-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.price-category h4 {
    color: var(--color-dark-green);
    margin-bottom: 0.5rem;
}

.price-range {
    color: var(--color-gold);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.price-note p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-charcoal);
}

/* FLOATING WHATSAPP BUTTON */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-brand .tagline {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

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

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

.social-links a:hover {
    background-color: var(--color-gold);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4, .footer-newsletter h4 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-links a {
    display: block;
    margin-bottom: 0.75rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-contact i {
    color: var(--color-gold);
    width: 20px;
}

.footer-newsletter p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.footer-newsletter .btn {
    width: 100%;
}

.newsletter-note {
    margin-top: 0.5rem;
    opacity: 0.6;
    font-size: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.875rem;
}

.footer-links-secondary {
    margin-top: 1rem;
}

.footer-links-secondary a {
    color: var(--color-gold);
    margin: 0 0.5rem;
    text-decoration: none;
    opacity: 0.8;
}

.footer-links-secondary a:hover {
    opacity: 1;
}

/* MODAL */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-icon {
    font-size: 4rem;
    color: var(--color-success);
    margin-bottom: 1.5rem;
}

.modal-content h3 {
    color: var(--color-dark-green);
    margin-bottom: 1rem;
}

.modal-content p {
    margin-bottom: 2rem;
    color: var(--color-charcoal);
}

.modal-content .btn {
    min-width: 200px;
}

/* NOTIFICATION STYLES */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    animation: slideIn 0.3s ease;
    border-left: 4px solid var(--color-success);
    max-width: 350px;
}

.notification.error {
    border-left-color: var(--color-error);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification i {
    font-size: 1.2rem;
    color: var(--color-success);
}

.notification.error i {
    color: var(--color-error);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.bg-light { background-color: var(--color-light); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* PRINT STYLES */
@media print {
    .floating-whatsapp,
    .mobile-menu-btn,
    .btn-whatsapp,
    .btn-whatsapp-large,
    .cart-btn,
    .notification {
        display: none !important;
    }
}