/*
Theme Name: Seventy Blue
Theme URI: https://seventyblue.com
Author: Christian Laurian
Author URI: https://christianlaurian.com
Description: Tema multipropósito avanzado para WordPress con soporte completo para WooCommerce, personalización extensa y diseño responsive. Ideal para e-commerce, portafolios, blogs y landing pages.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: seventy-blue
Tags: e-commerce, portfolio, blog, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, full-width-template, theme-options, translation-ready, block-styles, wide-blocks
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset & Normalize
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Navigation
6.0 Accessibility
7.0 Layout
8.0 Widgets
9.0 Content
10.0 WooCommerce
11.0 Media
12.0 Responsive
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Reset & Normalize
--------------------------------------------------------------*/
* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

:root {
    --color-primary: #2271b1;
    --color-primary-700: #135e96;
    --color-primary-rgb: 34, 113, 177;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
    display: block;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    clear: both;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 1rem;
    color: #1a1a1a;
}

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

p {
    margin: 0 0 1.5rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: var(--color-primary-700);
    text-decoration: underline;
}

a:focus {
    outline: thin dotted;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
ul, ol {
    margin: 0 0 1.5rem 1.5rem;
    padding: 0;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 1.5rem;
}

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

figure {
    margin: 0 0 1.5rem;
}

table {
    width: 100%;
    margin: 0 0 1.5rem;
    border-collapse: collapse;
    border-spacing: 0;
}

th, td {
    padding: 0.5rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    font-weight: 700;
    background-color: #f5f5f5;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: none;
    background-color: #2271b1;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background-color: #135e96;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus {
    outline: none;
    border-color: #2271b1;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/* Navegación moderna y limpia */
.site-navigation {
    flex: 1;
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    align-items: center;
}

.main-navigation li {
    position: relative;
    margin: 0;
}

.main-navigation a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.main-navigation a:hover,
.main-navigation a:focus,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
    background-color: #2271b1;
    color: #fff;
    text-decoration: none;
}

/* Dropdown moderno */
.main-navigation ul ul {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #fff;
    min-width: 220px;
    display: none;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 0.5rem;
    z-index: 99999;
    gap: 0;
}

.main-navigation ul ul li {
    width: 100%;
}

.main-navigation ul ul a {
    padding: 0.75rem 1rem;
    color: #333;
    border-radius: 4px;
}

.main-navigation ul ul a:hover {
    background-color: #f5f5f5;
    color: #2271b1;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
    display: flex;
    animation: slideDown 0.3s ease;
}

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

/* Menu toggle para móvil */
.menu-toggle {
    display: none;
    background-color: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background-color: #333;
    color: #fff;
}

.menu-toggle .menu-icon {
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: all 0.3s ease;
}

.menu-toggle .menu-icon::before,
.menu-toggle .menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: all 0.3s ease;
}

.menu-toggle .menu-icon::before {
    top: -6px;
}

.menu-toggle .menu-icon::after {
    top: 6px;
}

/* Cart icon en header (WooCommerce) */
.header-cart {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.cart-contents {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: #2271b1;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cart-contents:hover {
    background-color: #135e96;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 113, 177, 0.3);
}

.cart-contents .count {
    background-color: rgba(255,255,255,0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.875rem;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/*--------------------------------------------------------------
7.0 Layout
--------------------------------------------------------------*/
/* Header moderno y limpio */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.site-branding {
    flex-shrink: 0;
}

.site-title {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.site-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-title a:hover {
    color: #2271b1;
}

.site-description {
    margin: 0.25rem 0 0;
    color: #666;
    font-size: 0.875rem;
    line-height: 1.4;
}

.custom-logo-link {
    display: block;
    max-width: 200px;
}

.custom-logo {
    height: auto;
    max-width: 100%;
    display: block;
}

/* Contenido principal - ancho completo moderno */
.site-content {
    padding: 3rem 0;
    min-height: calc(100vh - 400px);
}

.content-area {
    width: 100%;
}

/* Layout con sidebar */
.has-sidebar .site-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

/* Layout sin sidebar - ancho completo */
.no-sidebar .content-area,
.page-template-full-width .content-area,
.woocommerce .content-area {
    max-width: 100%;
}

/* Footer moderno */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #fff;
    margin-top: 4rem;
}

.site-footer a {
    color: #fff;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #2271b1;
}

/* Container con ancho moderno */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Container estrecho para lectura */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Estilos de página moderna */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

/*--------------------------------------------------------------
8.0 Widgets
--------------------------------------------------------------*/
.widget-area {
    position: sticky;
    top: 100px;
}

.widget {
    margin: 0 0 2.5rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.widget:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.widget-title {
    font-size: 1.25rem;
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #2271b1;
    color: #1a1a1a;
}

.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li:hover {
    padding-left: 0.5rem;
}

.widget a {
    color: #333;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.widget a:hover {
    color: #2271b1;
}

/* Search widget */
.widget_search .search-form {
    position: relative;
}

.widget_search .search-field {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.widget_search .search-field:focus {
    border-color: #2271b1;
    outline: none;
}

.widget_search .search-submit {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.5rem 1rem;
    background-color: #2271b1;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* Categories widget */
.widget_categories select,
.widget_archive select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.widget_categories select:focus,
.widget_archive select:focus {
    border-color: #2271b1;
    outline: none;
}

/* Tag cloud widget */
.tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tagcloud a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #f5f5f5;
    color: #333;
    border-radius: 20px;
    font-size: 0.875rem !important;
    transition: all 0.3s ease;
}

.tagcloud a:hover {
    background-color: #2271b1;
    color: #fff;
}

/* Recent posts widget */
.widget_recent_entries ul li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.widget_recent_entries .post-date {
    font-size: 0.8rem;
    color: #999;
}

@media screen and (max-width: 767px) {
    .widget-area {
        position: static;
        margin-top: 3rem;
    }
    
    .widget {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
}

/*--------------------------------------------------------------
9.0 Content
--------------------------------------------------------------*/
/* Entry styles modernos */
article {
    margin-bottom: 3rem;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

article:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.entry-header {
    padding: 2rem;
    padding-bottom: 1rem;
}

.entry-title {
    margin: 0 0 1rem;
    font-size: 2rem;
    line-height: 1.3;
}

.entry-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-title a:hover {
    color: #2271b1;
    text-decoration: none;
}

.entry-meta {
    color: #666;
    font-size: 0.875rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.entry-meta a {
    color: #666;
    transition: color 0.3s ease;
}

.entry-meta a:hover {
    color: #2271b1;
    text-decoration: none;
}

.entry-content {
    padding: 0 2rem 2rem;
    line-height: 1.8;
}

.entry-content > *:first-child {
    margin-top: 0;
}

.entry-content > *:last-child {
    margin-bottom: 0;
}

.entry-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #f0f0f0;
    background-color: #f9f9f9;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
}

.entry-footer span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.entry-footer a {
    color: #2271b1;
    font-weight: 500;
}

/* Post thumbnail moderno */
.post-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    aspect-ratio: 16 / 9;
    background-color: #f5f5f5;
}

.post-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-thumbnail:hover img {
    transform: scale(1.05);
}

/* Single post/page */
.single article,
.page article {
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.single .entry-header,
.page .entry-header {
    padding: 3rem 3rem 2rem;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
}

.single .entry-title,
.page .entry-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.single .entry-content,
.page .entry-content {
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.single .entry-footer,
.page .entry-footer {
    padding: 2rem 3rem;
}

/* Archive/Blog layout */
.archive article,
.blog article,
.search article {
    display: grid;
    grid-template-columns: 1fr;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Pagination moderna */
.navigation {
    margin: 3rem 0;
    text-align: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nav-links a,
.nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 1rem;
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links .current {
    background-color: #2271b1;
    color: #fff;
    border-color: #2271b1;
    transform: translateY(-2px);
}

/* Read more button */
.more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #2271b1;
    color: #fff !important;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.more-link:hover {
    background-color: #135e96;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 113, 177, 0.3);
}

@media screen and (max-width: 767px) {
    article {
        margin-bottom: 2rem;
    }
    
    .entry-header,
    .entry-content,
    .entry-footer {
        padding: 1.5rem;
    }
    
    .single .entry-header,
    .page .entry-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .single .entry-content,
    .page .entry-content {
        padding: 2rem 1.5rem;
    }
    
    .single .entry-title,
    .page .entry-title {
        font-size: 1.75rem;
    }
    
    .entry-title {
        font-size: 1.5rem;
    }
}

/*--------------------------------------------------------------
10.0 WooCommerce
--------------------------------------------------------------*/
.woocommerce-breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.woocommerce .products ul,
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    text-align: center;
    border: 1px solid #eee;
    padding: 1rem;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.woocommerce ul.products li.product img {
    margin-bottom: 1rem;
}

.woocommerce ul.products li.product .price {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

/* Overrides to unify palette and enhance contrast */
.main-navigation a:hover,
.main-navigation a:focus,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
    background-color: var(--color-primary);
    color: #fff;
}

.more-link {
    background-color: var(--color-primary);
    color: #fff !important;
}

.more-link:hover {
    background-color: var(--color-primary-700);
    box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.3);
}

.widget-title {
    border-bottom-color: var(--color-primary);
}

.widget a:hover {
    color: var(--color-primary);
}

.widget_search .search-field:focus {
    border-color: var(--color-primary);
}

.widget_search .search-submit {
    background-color: var(--color-primary);
    color: #fff;
}

.tagcloud a:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.site-footer a:hover {
    color: var(--color-primary);
}

.nav-links a:hover,
.nav-links .current {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}
/*--------------------------------------------------------------
11.0 Media
--------------------------------------------------------------*/
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 1.5rem;
}

.wp-caption img {
    display: block;
    margin: 0 auto;
}

.wp-caption-text {
    text-align: center;
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
}

/*--------------------------------------------------------------
12.0 Responsive
--------------------------------------------------------------*/
/* Tablet y desktop */
@media screen and (min-width: 1024px) {
    .has-sidebar .site-content {
        display: grid;
        grid-template-columns: 1fr 350px;
        gap: 3rem;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .has-sidebar .site-content {
        display: grid;
        grid-template-columns: 1fr 280px;
        gap: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
}

/* Mobile */
@media screen and (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Header mobile */
    .header-wrapper {
        flex-wrap: wrap;
    }
    
    .site-branding {
        flex: 1;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
    
    .site-description {
        font-size: 0.8rem;
    }
    
    /* Navegación mobile */
    .menu-toggle {
        display: block;
        order: 3;
    }
    
    .site-navigation {
        flex-basis: 100%;
        order: 4;
    }
    
    .main-navigation {
        justify-content: flex-start;
    }
    
    .main-navigation ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        padding: 1rem;
        margin-top: 1rem;
        gap: 0.25rem;
    }
    
    .main-navigation.toggled ul {
        display: flex;
    }
    
    .main-navigation li {
        width: 100%;
    }
    
    .main-navigation a {
        width: 100%;
        padding: 0.875rem 1rem;
    }
    
    .main-navigation ul ul {
        position: static;
        box-shadow: none;
        background-color: #f8f8f8;
        margin-top: 0.25rem;
        padding: 0.5rem;
        border-radius: 6px;
    }
    
    .main-navigation ul li:hover > ul,
    .main-navigation ul li.focus > ul {
        display: flex;
        padding-left: 0;
    }
    
    /* Contenido mobile */
    .site-content {
        padding: 2rem 0;
    }
    
    .has-sidebar .site-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .widget-area {
        order: 2;
    }
    
    /* Typography mobile */
    h1, .page-title {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    h4 {
        font-size: 1.125rem;
    }
    
    /* Footer mobile */
    .footer-widget-area {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .site-info {
        text-align: center;
    }
    
    /* Cart icon mobile */
    .header-cart {
        margin-left: 0.5rem;
    }
    
    .cart-contents {
        padding: 0.5rem 0.875rem;
        font-size: 0.875rem;
    }
}

/* Extra small mobile */
@media screen and (max-width: 480px) {
    .site-title {
        font-size: 1.25rem;
    }
    
    h1, .page-title {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
}
