/* ============================================
   MONFARED STORE - PROFESSIONAL CSS
   ============================================ */

:root {
    --primary-dark: #2C5530;
    --primary-brown: #6B4423;
    --primary-gold: #D4AF37;
    --primary-cream: #F5EFE0;
    --text-dark: #1F1F1F;
    --text-light: #666;
    --border-light: #E8DCC8;
    --success: #2C7A2C;
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #fff;
    overflow-x: hidden;
}

/* ============================================
   BASE STYLES
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-brown) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--primary-brown);
    color: white;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* ============================================
   HEADER
   ============================================ */

header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-brown) 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--primary-gold);
    object-fit: cover;
}

.brand h1 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.brand p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
}

.navbar {
    flex-grow: 1;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar a:hover,
.navbar a.active {
    color: var(--primary-gold);
}

.navbar a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gold);
}

.cart-link {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.05) 0%, rgba(107, 68, 35, 0.05) 100%);
    padding: 4rem 1rem;
    min-height: 400px;
    display: flex;
    align-items: center;
}

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

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

.hero-title {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 900;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image {
    font-size: 200px;
    text-align: center;
    color: var(--primary-brown);
    opacity: 0.3;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: 4rem 1rem;
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: var(--primary-cream);
    transition: all 0.3s ease;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.products-preview {
    padding: 4rem 1rem;
    background: #fafafa;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 1rem 1rem 0.5rem;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.product-card .description {
    padding: 0 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-card .price {
    padding: 0.5rem 1rem;
    color: var(--primary-brown);
    font-weight: 700;
    font-size: 1.1rem;
}

.product-card .btn {
    margin: 0 1rem 1rem;
    width: calc(100% - 2rem);
}

.section-footer {
    text-align: center;
}

/* ============================================
   FILTERS SECTION
   ============================================ */

.products-filters {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 250px;
}

.filter-group h3 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-input,
.sort-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.search-input:focus,
.sort-select:focus {
    outline: none;
    border-color: var(--primary-brown);
    box-shadow: 0 0 0 3px rgba(107, 68, 35, 0.1);
}

/* ============================================
   FORM STYLES
   ============================================ */

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

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

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-brown);
    box-shadow: 0 0 0 3px rgba(107, 68, 35, 0.1);
}

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

@media (max-width: 768px) {
    .products-filters {
        flex-direction: column;
        gap: 1rem;
    }

    .filter-group {
        min-width: 100%;
    }

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

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: 4rem 1rem;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1rem;
}

.about-list {
    list-style: none;
    margin-bottom: 2rem;
}

.about-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-list i {
    color: var(--success);
    font-weight: bold;
}

.about-image {
    text-align: center;
    font-size: 150px;
    color: var(--primary-brown);
    opacity: 0.2;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.quick-contact {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.05) 0%, rgba(107, 68, 35, 0.05) 100%);
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.contact-card i {
    font-size: 2rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 1rem 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: white;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-brown);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: #aaa;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }
}

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

    .navbar {
        display: none;
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: var(--primary-brown);
        padding: 1rem;
        z-index: 999;
        box-shadow: var(--shadow-md);
    }

    .navbar.active {
        display: block;
    }

    .navbar ul {
        flex-direction: column;
        gap: 1rem;
        justify-content: flex-start;
        margin: 0;
        padding: 0;
    }

    .navbar li {
        list-style: none;
    }

    .navbar a {
        display: block;
        padding: 0.75rem 0;
    }

    .header-content {
        flex-wrap: nowrap;
    }

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

    .hero-title {
        font-size: 2rem;
    }

    .hero-image {
        font-size: 100px;
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        font-size: 80px;
    }

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

    .feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 40px;
        height: 40px;
    }

    .brand h1 {
        font-size: 1.1rem;
    }

    .hero {
        padding: 2rem 1rem;
        min-height: 350px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

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

    .hero-image {
        font-size: 80px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

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

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

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

    .about-text h2 {
        font-size: 1.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes inputFocus {
    0% {
        box-shadow: 0 0 0 0 rgba(44, 85, 48, 0.15);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(44, 85, 48, 0.1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(44, 85, 48, 0);
    }
}

.product-card,
.feature-card,
.contact-card {
    animation: fadeIn 0.6s ease-out forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

/* ============================================
   FORMS & INPUTS
   ============================================ */

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 0.5rem;
    margin: 0 1rem;
}

.search-input,
input[type="search"],
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background: #ffffff;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.search-input::placeholder,
input::placeholder,
textarea::placeholder {
    color: #bbb;
    font-weight: 500;
}

input[type="search"]:hover,
input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="number"]:hover,
textarea:hover,
select:hover {
    border-color: var(--primary-brown);
    box-shadow: 0 4px 12px rgba(107, 68, 35, 0.12);
}

input[type="search"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-dark);
    background: white;
    box-shadow: 0 0 0 4px rgba(44, 85, 48, 0.15), 0 4px 16px rgba(44, 85, 48, 0.2);
    transform: translateY(-2px);
}

textarea {
    resize: vertical;
    min-height: 140px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24'%3E%3Cpath fill='%232C5530' d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 0.85rem center;
    padding-left: 2.75rem;
    padding-right: 1rem;
}

/* Products Filters */
.products-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--primary-cream);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.filter-group h3 {
    color: var(--primary-dark);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.filter-group h3 i {
    color: var(--primary-brown);
}

.sort-select {
    padding: 0.85rem 2.8rem 0.85rem 1rem;
}

/* Form Groups */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.8rem;
}

.form-group label {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
}

/* Contact Form */
.contact-form {
    background: var(--primary-cream);
    padding: 2.5rem;
    border-radius: 10px;
    max-width: 650px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: 1.6rem;
}

.form-submit {
    width: 100%;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-brown) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.25);
    text-transform: none;
}

.form-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.35);
    background: linear-gradient(135deg, var(--primary-dark) 0%, #4a6b3c 100%);
}

.form-submit:active:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.25);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Newsletter Subscription */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-brown) 100%);
    color: white;
    padding: 2rem 1rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.newsletter-section h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.newsletter-section p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 220px;
    padding: 0.9rem 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    transition: all 0.35s ease;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form input:focus {
    outline: none;
    border-color: white;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.newsletter-form button {
    padding: 0.9rem 1.8rem;
    background: var(--primary-gold);
    color: var(--primary-dark);
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.newsletter-form button:hover {
    background: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-form button:active {
    transform: translateY(0);
}

/* Checkbox & Radio */
input[type="checkbox"],
input[type="radio"] {
    width: auto;
    margin-right: 0.5rem;
    cursor: pointer;
}

label input[type="checkbox"],
label input[type="radio"] {
    margin: 0 0.5rem 0 0;
}

/* Error States */
.form-error {
    border-color: #dc3545 !important;
    background: #fff5f5 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15) !important;
}

.error-message {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 0.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Success States */
.form-success {
    border-color: var(--success) !important;
    background: #f0fdf4 !important;
}

.success-message {
    color: var(--success);
    font-size: 0.9rem;
    margin-top: 0.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Search Box in Header */
header .search-box {
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 0.6rem 1rem;
    flex: 0 1 280px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    transition: all 0.35s ease;
}

header .search-box:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header .search-box:focus-within {
    background: rgba(255, 255, 255, 0.95);
    border-color: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

header .search-box input {
    background: transparent;
    border: none;
    color: white;
    font-size: 0.95rem;
    padding: 0.4rem;
    flex: 1;
    margin: 0;
}

header .search-box:focus-within input {
    color: var(--text-dark);
}

header .search-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

header .search-box:focus-within input::placeholder {
    color: #999;
}

header .search-box input:focus {
    outline: none;
}

header .search-box button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
    transition: all 0.25s ease;
}

header .search-box button:hover {
    color: var(--primary-gold);
}

header .search-box:focus-within button {
    color: var(--primary-brown);
}

@media (max-width: 768px) {
    header .search-box {
        max-width: 100%;
        margin: 1rem 0 0 0;
        flex: 1;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .products-filters {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }

    .search-box {
        margin: 0;
    }

    .contact-form {
        padding: 1.8rem;
        gap: 1rem;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    input[type="search"],
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    textarea,
    select {
        padding: 0.8rem 0.9rem;
        font-size: 1.05rem;
    }

    .form-submit,
    .newsletter-form button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Input disabled state */
input[type="search"]:disabled,
input[type="text"]:disabled,
input[type="email"]:disabled,
input[type="tel"]:disabled,
input[type="number"]:disabled,
textarea:disabled,
select:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    opacity: 0.7;
    border-color: #ddd;
}
