/* ============================================
   Wild Dune - Wild West E-commerce Theme
   Sandy backgrounds, brown accents, frontier spirit
   ============================================ */

/* CSS Variables */
:root {
    --sand-50: #FDF8F0;
    --sand-100: #F5E6D3;
    --sand-200: #E8D5B5;
    --sand-300: #D4A373;
    --sand-400: #C8956C;
    --brown-500: #A0522D;
    --brown-600: #8B4513;
    --brown-700: #6D360F;
    --brown-800: #5C4033;
    --brown-900: #3E2723;
    --cream: #FAF3E8;
    --white: #FFFFFF;
    --shadow: rgba(62, 39, 35, 0.15);
    --shadow-lg: rgba(62, 39, 35, 0.25);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --font-display: 'Rye', serif;
    --font-body: 'Open Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--sand-50);
    color: var(--brown-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 8px;
}

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

.btn-primary:hover {
    background: var(--brown-700);
    border-color: var(--brown-700);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

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

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--sand-200);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

.logo-icon {
    width: 50px;
    height: 30px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--brown-600);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--brown-800);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brown-600);
    transition: var(--transition);
}

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

.cart-btn {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-800);
    border-radius: 50%;
    transition: var(--transition);
}

.cart-btn:hover {
    background: var(--sand-100);
    color: var(--brown-600);
}

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

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

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sand-200) 0%, var(--sand-300) 50%, var(--brown-500) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--sand-50), transparent);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    padding: 0 24px;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--brown-900);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--brown-800);
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0.9;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--brown-800);
    font-size: 0.85rem;
    z-index: 2;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--brown-800);
    border-bottom: 2px solid var(--brown-800);
    transform: rotate(45deg);
    margin: 10px auto 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-10px) rotate(45deg); }
    60% { transform: translateY(-5px) rotate(45deg); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--brown-600);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--brown-800);
    opacity: 0.8;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-section {
    padding: 100px 0;
    background: var(--sand-50);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--sand-200);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 240px;
    background: var(--sand-100);
    overflow: hidden;
}

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

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

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--brown-600);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 24px;
}

.product-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--brown-800);
    margin-bottom: 8px;
}

.product-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--brown-500);
}

.product-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-meta svg {
    width: 14px;
    height: 14px;
}

.product-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--brown-600);
}

.product-description {
    font-size: 0.9rem;
    color: var(--brown-800);
    opacity: 0.8;
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   ABOUT
   ============================================ */
.about-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--sand-50), var(--sand-100));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow);
}

.about-img-placeholder svg {
    width: 100%;
    height: auto;
}

.about-content p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--brown-800);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid var(--sand-200);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--brown-600);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--brown-500);
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--brown-900);
    color: var(--sand-100);
    padding: 64px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo-text {
    color: var(--sand-200);
    font-size: 1.75rem;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--sand-200);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    padding: 6px 0;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--sand-300);
}

.footer-contact p {
    opacity: 0.8;
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(245, 230, 211, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0.7;
    transition: var(--transition);
}

.social-links a:hover {
    opacity: 1;
    background: var(--brown-600);
    border-color: var(--brown-600);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(245, 230, 211, 0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(62, 39, 35, 0.6);
    backdrop-filter: blur(4px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.95);
    transition: var(--transition);
    box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-small {
    max-width: 480px;
    text-align: center;
    padding: 48px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sand-50);
    color: var(--brown-800);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--sand-200);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.modal-gallery {
    background: var(--sand-100);
    display: flex;
    flex-direction: column;
}

.modal-main-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.modal-main-image img,
.modal-main-image svg {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
    border-radius: var(--radius);
}

.modal-thumbnails {
    display: flex;
    gap: 8px;
    padding: 16px;
    background: rgba(255,255,255,0.5);
    overflow-x: auto;
}

.modal-thumb {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    flex-shrink: 0;
    transition: var(--transition);
}

.modal-thumb.active {
    border-color: var(--brown-600);
}

.modal-thumb img,
.modal-thumb svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.modal-category {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brown-500);
    margin-bottom: 8px;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--brown-800);
    margin-bottom: 8px;
}

.modal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brown-600);
    margin-bottom: 20px;
}

.modal-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--sand-200);
}

.modal-meta > span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--brown-700);
}

.modal-meta svg {
    width: 16px;
    height: 16px;
}

.modal-description {
    color: var(--brown-800);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.modal-highlights {
    margin-bottom: 24px;
}

.modal-highlights h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--brown-700);
    margin-bottom: 12px;
}

.modal-highlights ul {
    list-style: none;
}

.modal-highlights li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--brown-800);
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-highlights li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--brown-500);
    border-radius: 50%;
    flex-shrink: 0;
}

.modal-actions {
    display: flex;
    gap: 16px;
    margin-top: auto;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--sand-200);
    border-radius: var(--radius);
    overflow: hidden;
}

.qty-btn {
    width: 44px;
    height: 48px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brown-600);
    background: var(--sand-50);
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--sand-200);
}

.qty-value {
    width: 48px;
    text-align: center;
    font-weight: 700;
    color: var(--brown-800);
}

.btn-add {
    flex: 1;
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(62, 39, 35, 0.4);
    backdrop-filter: blur(2px);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 160;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px var(--shadow-lg);
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--sand-200);
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--brown-800);
}

.cart-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-800);
    transition: var(--transition);
}

.cart-close:hover {
    background: var(--sand-100);
}

.cart-close svg {
    width: 20px;
    height: 20px;
}

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

.cart-empty {
    text-align: center;
    padding: 48px 24px;
    color: var(--brown-500);
}

.cart-empty svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    opacity: 0.5;
}

.cart-empty p {
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-empty span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--sand-100);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    background: var(--sand-100);
    overflow: hidden;
    flex-shrink: 0;
}

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

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-title {
    font-weight: 700;
    color: var(--brown-800);
    font-size: 0.95rem;
}

.cart-item-meta {
    font-size: 0.8rem;
    color: var(--brown-500);
}

.cart-item-price {
    font-weight: 700;
    color: var(--brown-600);
}

.cart-item-remove {
    align-self: flex-start;
    color: var(--brown-500);
    font-size: 0.8rem;
    text-decoration: underline;
    padding: 4px 0;
}

.cart-item-remove:hover {
    color: var(--brown-700);
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--sand-200);
    background: var(--sand-50);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brown-800);
}

.btn-checkout {
    width: 100%;
    margin-bottom: 12px;
}

.cart-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--brown-500);
}

/* ============================================
   SHOPIFY STUB
   ============================================ */
.shopify-stub {
    padding: 16px 0;
}

.stub-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: var(--sand-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-600);
}

.stub-icon svg {
    width: 32px;
    height: 32px;
}

.shopify-stub h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--brown-800);
    margin-bottom: 12px;
}

.shopify-stub p {
    color: var(--brown-700);
    margin-bottom: 8px;
    line-height: 1.6;
}

.stub-contact {
    margin: 20px 0 !important;
    padding: 16px;
    background: var(--sand-50);
    border-radius: var(--radius);
}

.stub-contact a {
    color: var(--brown-600);
    font-weight: 700;
    text-decoration: underline;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: 120px 0 80px;
    background: var(--sand-50);
    min-height: 100vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--brown-800);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--brown-700);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: var(--sand-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-600);
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
}

.contact-detail h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brown-800);
    margin-bottom: 2px;
}

.contact-detail p {
    font-size: 0.95rem;
    color: var(--brown-600);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brown-800);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--sand-200);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    color: var(--brown-900);
    background: var(--sand-50);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brown-500);
    background: var(--white);
}

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

.form-submit {
    width: 100%;
}

.form-status {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    display: none;
}

.form-status.success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
}

.form-status.error {
    display: block;
    background: #ffebee;
    color: #c62828;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .modal-content {
        grid-template-columns: 1fr;
    }
    
    .modal-gallery {
        min-height: 300px;
    }
    
    .cart-drawer {
        width: 100%;
    }
    
    .about-stats {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .quantity-selector {
        justify-content: center;
    }
}
