/**
 * Hardy Saul - Main Stylesheet
 * Vintage Country Aesthetic
 */

:root {
    --cream: #f5f0e8;
    --cream-dark: #e8dcc8;
    --terracotta: #c17f59;
    --terracotta-dark: #a66a48;
    --sage: #8b9a7d;
    --sage-dark: #6b7a5d;
    --gold: #c9a86c;
    --gold-dark: #a88a52;
    --brown: #5c4a3a;
    --brown-light: #8b7355;
    --charcoal: #3d3630;
    --white: #ffffff;
    --error: #c45b4a;
    --success: #6b9a7d;
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Libre Franklin', -apple-system, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-xxl: 6rem;
    
    --container: 1400px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    --transition: all 0.3s ease;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-md); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--brown);
}

h1 { font-size: 3rem; } h2 { font-size: 2.5rem; } h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; } h5 { font-size: 1.25rem; } h6 { font-size: 1rem; }

p { margin-bottom: var(--space-sm); }

/* Header */
.site_header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(92, 74, 58, 0.08);
}

.header_top {
    background: var(--brown);
    color: var(--cream);
    padding: 0.5rem 0;
    font-size: 13px;
}

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

.top_message { margin: 0; opacity: 0.9; }

.currency_select {
    background: transparent;
    border: 1px solid rgba(245, 240, 232, 0.3);
    color: var(--cream);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 13px;
    cursor: pointer;
}

.currency_select option { background: var(--brown); color: var(--cream); }

.header_main { padding: var(--space-sm) 0; }

.header_main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.mobile_menu_btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile_menu_btn span { width: 24px; height: 2px; background: var(--brown); transition: var(--transition); }

.logo { display: block; }
.logo_svg { height: 45px; width: auto; }

.main_nav { display: flex; gap: var(--space-lg); }

.nav_link {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--brown);
    padding: 0.5rem 0;
    position: relative;
}

.nav_link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: var(--transition);
}

.nav_link:hover::after, .nav_link.active::after { width: 100%; }

.header_actions { display: flex; align-items: center; gap: var(--space-sm); }

.action_btn { color: var(--brown); padding: 0.5rem; position: relative; }
.action_btn:hover { color: var(--terracotta); }

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

.mobile_nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: var(--space-md);
    box-shadow: 0 10px 30px rgba(92, 74, 58, 0.1);
    flex-direction: column;
    gap: var(--space-sm);
}

.mobile_nav.active { display: flex; }

.mobile_link {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--brown);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--cream-dark);
}

.site_main { min-height: calc(100vh - 400px); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
}

.btn_primary { background: var(--terracotta); color: var(--white); }
.btn_primary:hover { background: var(--terracotta-dark); }

.btn_secondary { background: transparent; color: var(--brown); border: 2px solid var(--brown); }
.btn_secondary:hover { background: var(--brown); color: var(--cream); }

.btn_outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn_outline:hover { background: var(--white); color: var(--brown); }

.btn_full { width: 100%; }

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    overflow: hidden;
}

.hero_content { max-width: 600px; padding: var(--space-xxl) 0; }

.hero_subtitle {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--terracotta);
    margin-bottom: var(--space-sm);
}

.hero_title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    color: var(--brown);
}

.hero_text {
    font-size: 1.1rem;
    color: var(--brown-light);
    margin-bottom: var(--space-lg);
    max-width: 500px;
}

.hero_actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

/* Section Styles */
.section { padding: var(--space-xxl) 0; }

.section_header { text-align: center; margin-bottom: var(--space-xl); }

.section_label {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--terracotta);
    margin-bottom: var(--space-xs);
}

.section_title { font-size: 2.75rem; margin-bottom: var(--space-sm); }
.section_desc { color: var(--brown-light); max-width: 600px; margin: 0 auto; }

/* Product Grid */
.product_grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }

.product_card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(92, 74, 58, 0.06);
}

.product_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(92, 74, 58, 0.12);
}

.product_thumb { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--cream); }

.product_thumb img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.product_card:hover .product_thumb img { transform: scale(1.05); }

.product_badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background: var(--terracotta);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
}

.product_info { padding: var(--space-md); }

.product_name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product_price { font-size: 1.1rem; font-weight: 600; color: var(--terracotta); }

/* Featured Section */
.featured { background: var(--white); }
.featured_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }

.featured_item { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-md); overflow: hidden; }
.featured_item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.featured_item:hover img { transform: scale(1.05); }

.featured_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(92, 74, 58, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg);
}

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

.featured_link {
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.featured_link:hover { color: var(--white); }

/* About Section */
.about_section { background: var(--brown); color: var(--cream); }
.about_section .section_title { color: var(--white); }
.about_section .section_desc { color: var(--cream-dark); }

.about_grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.about_content { padding-right: var(--space-xl); }

.about_text { font-size: 1.1rem; line-height: 1.9; color: var(--cream-dark); margin-bottom: var(--space-md); }

.about_image { border-radius: var(--radius-lg); overflow: hidden; }
.about_image img { width: 100%; height: 100%; object-fit: cover; }

/* Newsletter */
.newsletter { background: var(--cream-dark); text-align: center; }

.newsletter_form {
    max-width: 500px;
    margin: var(--space-lg) auto 0;
    display: flex;
    gap: var(--space-sm);
}

.newsletter_input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--brown);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    background: var(--white);
}

.newsletter_input:focus { outline: none; border-color: var(--terracotta); }

/* Footer */
.site_footer { background: var(--charcoal); color: var(--cream); }
.footer_top { padding: var(--space-xxl) 0 var(--space-xl); }

.footer_grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: var(--space-xl); }

.footer_title { color: var(--white); font-size: 1.1rem; margin-bottom: var(--space-md); font-weight: 600; }

.footer_text { color: var(--cream-dark); font-size: 14px; line-height: 1.8; margin-bottom: var(--space-md); }

.social_links { display: flex; gap: var(--space-sm); }

.social_link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(245, 240, 232, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    transition: var(--transition);
}

.social_link:hover { background: var(--terracotta); color: var(--white); }

.footer_links li { margin-bottom: 0.75rem; }
.footer_links a { color: var(--cream-dark); font-size: 14px; transition: var(--transition); }
.footer_links a:hover { color: var(--gold); padding-left: 5px; }

.contact_info li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 14px;
    color: var(--cream-dark);
}

.contact_info svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.footer_bottom { border-top: 1px solid rgba(245, 240, 232, 0.1); padding: var(--space-md) 0; }
.footer_bottom .container { display: flex; justify-content: space-between; align-items: center; }

.copyright { font-size: 13px; color: var(--brown-light); margin: 0; }
.payment_icons { display: flex; gap: var(--space-xs); }

/* Page Header */
.page_header {
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    padding: var(--space-xxl) 0 var(--space-xl);
    text-align: center;
}

.page_title { font-size: 3.5rem; margin-bottom: var(--space-sm); }
.page_desc { color: var(--brown-light); max-width: 600px; margin: 0 auto; }

/* Breadcrumbs */
.breadcrumbs { padding: var(--space-sm) 0; background: var(--white); border-bottom: 1px solid var(--cream-dark); }

.breadcrumbs_inner { display: flex; align-items: center; gap: 0.5rem; font-size: 13px; color: var(--brown-light); }
.breadcrumbs a:hover { color: var(--terracotta); }
.breadcrumbs .sep { color: var(--cream-dark); }
.breadcrumbs .current { color: var(--brown); }

/* Goods Page */
.goods_layout { display: grid; grid-template-columns: 280px 1fr; gap: var(--space-xl); padding: var(--space-xl) 0; }

.sidebar { position: sticky; top: 120px; height: fit-content; }

.filter_section { background: var(--white); padding: var(--space-md); border-radius: var(--radius-md); margin-bottom: var(--space-md); }

.filter_title { font-size: 1.1rem; margin-bottom: var(--space-sm); padding-bottom: var(--space-xs); border-bottom: 2px solid var(--cream-dark); }

.filter_list li { margin-bottom: 0.5rem; }
.filter_list a { display: flex; justify-content: space-between; align-items: center; color: var(--brown-light); font-size: 14px; padding: 0.35rem 0; }
.filter_list a:hover, .filter_list a.active { color: var(--terracotta); }

.filter_count { font-size: 12px; color: var(--brown-light); background: var(--cream); padding: 0.15rem 0.5rem; border-radius: 10px; }

.goods_header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-lg); }
.goods_count { font-size: 14px; color: var(--brown-light); }

.sort_select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--white);
    cursor: pointer;
}

.goods_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }

/* Product Detail */
.product_layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); padding: var(--space-xl) 0; }
.product_gallery { position: sticky; top: 120px; }

.gallery_main { background: var(--white); border-radius: var(--radius-md); overflow: hidden; margin-bottom: var(--space-sm); }
.gallery_main img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.gallery_thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-xs); }

.gallery_thumb { background: var(--white); border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: var(--transition); }
.gallery_thumb:hover, .gallery_thumb.active { border-color: var(--terracotta); }
.gallery_thumb img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.product_details { padding-left: var(--space-md); }

.product_category { font-family: var(--font-display); font-style: italic; color: var(--terracotta); margin-bottom: var(--space-xs); }
.product_title { font-size: 2.5rem; margin-bottom: var(--space-sm); }

.product_price_wrap { display: flex; align-items: baseline; gap: var(--space-sm); margin-bottom: var(--space-md); }
.product_price_main { font-size: 2rem; font-weight: 700; color: var(--terracotta); }
.product_price_compare { font-size: 1.25rem; color: var(--brown-light); text-decoration: line-through; }

.product_desc { color: var(--brown-light); margin-bottom: var(--space-lg); line-height: 1.9; }

.product_meta { border-top: 1px solid var(--cream-dark); padding-top: var(--space-md); margin-bottom: var(--space-lg); }
.meta_row { display: flex; margin-bottom: 0.75rem; font-size: 14px; }
.meta_label { width: 120px; color: var(--brown-light); }
.meta_value { color: var(--brown); font-weight: 500; }

.add_to_cart { display: flex; gap: var(--space-sm); margin-bottom: var(--space-lg); }

.qty_input {
    width: 100px;
    padding: 1rem;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 16px;
    text-align: center;
}

.qty_input:focus { outline: none; border-color: var(--terracotta); }

/* Cart Page */
.cart_layout { padding: var(--space-xl) 0; }
.cart_grid { display: grid; grid-template-columns: 1fr 380px; gap: var(--space-xl); }

.cart_items { background: var(--white); border-radius: var(--radius-md); padding: var(--space-lg); }

.cart_item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: var(--space-md);
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--cream-dark);
}

.cart_item:last-child { border-bottom: none; }

.cart_item_image { width: 100px; height: 100px; border-radius: var(--radius-sm); overflow: hidden; background: var(--cream); }
.cart_item_image img { width: 100%; height: 100%; object-fit: cover; }

.cart_item_info h4 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.cart_item_info p { font-size: 13px; color: var(--brown-light); margin: 0; }

.cart_item_qty { display: flex; align-items: center; gap: 0.5rem; }

.qty_btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition);
}

.qty_btn:hover { background: var(--cream-dark); }

.cart_item_price { font-weight: 600; font-size: 1.1rem; color: var(--brown); }

.remove_item { color: var(--brown-light); font-size: 13px; margin-top: 0.5rem; display: inline-flex; align-items: center; gap: 0.25rem; }
.remove_item:hover { color: var(--error); }

.cart_summary { background: var(--white); border-radius: var(--radius-md); padding: var(--space-lg); height: fit-content; position: sticky; top: 120px; }

.summary_title { font-size: 1.25rem; margin-bottom: var(--space-md); padding-bottom: var(--space-sm); border-bottom: 2px solid var(--cream-dark); }

.summary_row { display: flex; justify-content: space-between; margin-bottom: 0.75rem; font-size: 14px; }

.summary_row.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brown);
    padding-top: var(--space-sm);
    border-top: 2px solid var(--cream-dark);
    margin-top: var(--space-sm);
}

.checkout_btn { margin-top: var(--space-md); }

.empty_cart { text-align: center; padding: var(--space-xxl) 0; }
.empty_cart svg { width: 80px; height: 80px; color: var(--cream-dark); margin-bottom: var(--space-md); }
.empty_cart h2 { margin-bottom: var(--space-sm); }
.empty_cart p { color: var(--brown-light); margin-bottom: var(--space-lg); }

/* Checkout */
.checkout_layout { padding: var(--space-xl) 0; }
.checkout_grid { display: grid; grid-template-columns: 1fr 420px; gap: var(--space-xl); }

.checkout_form { background: var(--white); border-radius: var(--radius-md); padding: var(--space-lg); }

.form_section { margin-bottom: var(--space-lg); }
.form_section:last-child { margin-bottom: 0; }

.section_heading { font-size: 1.25rem; margin-bottom: var(--space-md); display: flex; align-items: center; gap: var(--space-sm); }

.section_heading span {
    width: 32px;
    height: 32px;
    background: var(--terracotta);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-family: var(--font-body);
}

.form_row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); margin-bottom: var(--space-sm); }
.form_group { margin-bottom: var(--space-sm); }

.form_label { display: block; font-size: 13px; font-weight: 500; color: var(--brown); margin-bottom: 0.35rem; }

.form_input, .form_select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    background: var(--white);
    transition: var(--transition);
}

.form_input:focus, .form_select:focus { outline: none; border-color: var(--terracotta); }
.form_input::placeholder { color: var(--brown-light); opacity: 0.6; }

.order_review { background: var(--white); border-radius: var(--radius-md); padding: var(--space-lg); height: fit-content; position: sticky; top: 120px; }

.review_items { margin-bottom: var(--space-md); padding-bottom: var(--space-md); border-bottom: 1px solid var(--cream-dark); }
.review_item { display: flex; gap: var(--space-sm); margin-bottom: var(--space-sm); }
.review_item img { width: 60px; height: 60px; border-radius: var(--radius-sm); object-fit: cover; }
.review_item_info { flex: 1; }
.review_item_name { font-size: 14px; font-weight: 500; margin-bottom: 0.25rem; }
.review_item_qty { font-size: 13px; color: var(--brown-light); }
.review_item_price { font-weight: 600; }

.payment_methods { margin: var(--space-md) 0; }

.payment_method {
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    padding: var(--space-sm);
    margin-bottom: var(--space-sm);
    cursor: pointer;
    transition: var(--transition);
}

.payment_method:hover, .payment_method.active { border-color: var(--terracotta); }
.place_order_btn { margin-top: var(--space-md); }

/* Success Page */
.success_page { text-align: center; padding: var(--space-xxl) 0; }

.success_icon {
    width: 100px;
    height: 100px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--white);
}

.success_title { font-size: 3rem; margin-bottom: var(--space-sm); }
.success_message { color: var(--brown-light); max-width: 500px; margin: 0 auto var(--space-lg); }

.order_details_box {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    text-align: left;
}

.order_details_box h3 { margin-bottom: var(--space-md); padding-bottom: var(--space-sm); border-bottom: 2px solid var(--cream-dark); }

/* Info Pages */
.info_page { padding: var(--space-xl) 0; }

.info_content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
}

.info_content h2 { margin: var(--space-lg) 0 var(--space-sm); font-size: 1.75rem; }
.info_content h2:first-child { margin-top: 0; }

.info_content p { color: var(--brown-light); line-height: 1.9; }
.info_content ul { margin: var(--space-md) 0; padding-left: var(--space-md); list-style: disc; }
.info_content li { margin-bottom: 0.5rem; color: var(--brown-light); }

/* Responsive */
@media (max-width: 1200px) {
    .product_grid { grid-template-columns: repeat(3, 1fr); }
    .goods_grid { grid-template-columns: repeat(2, 1fr); }
    .footer_grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
    .hero_title { font-size: 3rem; }
    .mobile_menu_btn { display: flex; }
    .main_nav { display: none; }
    .product_layout { grid-template-columns: 1fr; }
    .product_gallery { position: static; }
    .product_details { padding-left: 0; }
    .cart_grid, .checkout_grid { grid-template-columns: 1fr; }
    .cart_summary, .order_review { position: static; }
    .about_grid { grid-template-columns: 1fr; }
    .about_content { padding-right: 0; }
    .featured_grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --space-xxl: 4rem; --space-xl: 2.5rem; }
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }
    .hero { min-height: auto; padding: var(--space-xl) 0; }
    .hero_title { font-size: 2.5rem; }
    .product_grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
    .goods_layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .footer_grid { grid-template-columns: 1fr; }
    .footer_bottom .container { flex-direction: column; gap: var(--space-sm); text-align: center; }
    .form_row { grid-template-columns: 1fr; }
    .cart_item { grid-template-columns: 80px 1fr; }
    .cart_item_qty, .cart_item_price { grid-column: 2; }
}

@media (max-width: 480px) {
    .product_grid { grid-template-columns: 1fr; }
    .hero_actions { flex-direction: column; }
    .btn { width: 100%; }
    .add_to_cart { flex-direction: column; }
    .newsletter_form { flex-direction: column; }
}
