/*
Theme Name: Inspired Creations
Theme URI: https://inspiredcreations.art
Version: 3.0
Description: Portfolio and e-commerce theme for artist Terry Scheinoha - Fully Responsive
Author: Custom Development
Author URI: https://inspiredcreations.art
Text Domain: inspired-creations
Requires at least: 5.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
*/

/* ==========================================================================
   CSS RESET & BASE
   ========================================================================== */

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

:root {
    --logo-blue: #00a8e8;
    --sky-blue: #0398d4;
    --deep-blue: #006ba6;
    --muted-blue: #5a9eb8;
    --navy: #1a4d6f;
    --soft-gray: #e8e8e8;
    --light-gray: #f5f5f5;
    --dark-gray: #4a4a4a;
    --charcoal: #2d2d2d;
    --peach: #e39774;
    --soft-coral: #d88166;
    --white: #ffffff;
    --success: #28a745;
    --error: #dc3545;
    --warning: #ffc107;
    
    --header-height: 80px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--light-gray);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.cart-open,
body.menu-open {
    overflow: hidden;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: var(--white);
    padding: 0.5rem 1rem;
    z-index: 100000;
    border-radius: var(--radius-sm);
}

.skip-link:focus {
    top: 10px;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

a {
    color: var(--logo-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--deep-blue);
}

a:focus {
    outline: 2px solid var(--logo-blue);
    outline-offset: 2px;
}

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

#site-header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md);
}

#site-header.header-hidden {
    transform: translateY(-100%);
}

nav {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo - Left Side */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 50px;
    width: auto;
    transition: height var(--transition-normal);
}

#site-header.scrolled .logo img {
    height: 40px;
}

.logo span,
.logo .site-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--logo-blue);
}

/* Navigation Right Side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: all var(--transition-normal);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--logo-blue);
    transition: width var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links .current-menu-item a::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item a {
    color: var(--logo-blue);
}

.nav-links a i {
    font-size: 0.9rem;
}

/* Cart Icon */
.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.3rem;
    color: var(--charcoal);
    transition: color var(--transition-fast);
}

.cart-icon:hover,
.cart-icon:focus {
    color: var(--logo-blue);
}

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

/* Mobile Toggle / Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all var(--transition-normal);
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   CART SIDEBAR
   ========================================================================== */

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    max-width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 10000;
    transition: right var(--transition-slow);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

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

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--soft-gray);
    background: var(--light-gray);
}

.cart-header h3 {
    font-size: 1.2rem;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.close-cart {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-gray);
    cursor: pointer;
    padding: 0.5rem;
    transition: color var(--transition-fast);
}

.close-cart:hover {
    color: var(--error);
}

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

/* Mini Cart Styles */
.woocommerce-mini-cart {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-mini-cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--soft-gray);
}

.woocommerce-mini-cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

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

.cart-item-info a {
    font-weight: 600;
    color: var(--navy);
    display: block;
    margin-bottom: 0.25rem;
}

.cart-item-info .quantity {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.remove_from_cart_button {
    color: var(--dark-gray);
    font-size: 0.9rem;
    padding: 0.5rem;
}

.remove_from_cart_button:hover {
    color: var(--error);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--soft-gray);
    background: var(--light-gray);
}

.woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.woocommerce-mini-cart__buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-view-cart,
.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-normal);
}

.btn-view-cart {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-view-cart:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-checkout {
    background: var(--logo-blue);
    color: var(--white);
}

.btn-checkout:hover {
    background: var(--deep-blue);
}

.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--dark-gray);
}

.empty-cart i {
    font-size: 4rem;
    color: var(--soft-gray);
    margin-bottom: 1rem;
    display: block;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    line-height: 1.4;
}

.btn i {
    transition: transform var(--transition-normal);
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--logo-blue), var(--sky-blue));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 168, 232, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 168, 232, 0.35);
    color: var(--white);
}

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

.btn-secondary:hover {
    background: var(--logo-blue);
    color: var(--white);
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #e8e8e8 0%, #f0f0f0 50%, #e0e8ed 100%);
    padding: calc(var(--header-height) + 40px) 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--logo-blue), var(--sky-blue));
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: slideInLeft 0.8s ease;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: slideInLeft 1s ease 0.2s both;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: slideInLeft 1s ease 0.4s both;
}

.hero-content p strong {
    color: var(--logo-blue);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: slideInLeft 1s ease 0.6s both;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 168, 232, 0.15);
    animation: slideInLeft 1s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    background: linear-gradient(135deg, var(--logo-blue), var(--muted-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.stat-item p {
    color: var(--dark-gray);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.hero-image {
    animation: slideInRight 1.2s ease 0.8s both;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-slow);
}

.hero-image:hover img {
    transform: scale(1.02);
}

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

.about-brief {
    padding: 5rem 2rem;
    background: var(--white);
}

.about-brief-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-content p strong {
    color: var(--navy);
}

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

.featured-products {
    padding: 5rem 2rem;
    background: var(--soft-gray);
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--muted-blue), var(--logo-blue));
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(20px);
}

.product-card.active,
.product-card.show {
    opacity: 1;
    transform: translateY(0);
}

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

.product-link {
    display: block;
    text-decoration: none;
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.2;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.sale-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--soft-coral);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 77, 111, 0.95), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.view-details {
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--logo-blue);
    font-weight: 700;
    font-size: 1.15rem;
}

.products-cta {
    text-align: center;
}

.no-products {
    text-align: center;
    padding: 3rem;
    color: var(--dark-gray);
    grid-column: 1 / -1;
}

/* ==========================================================================
   MISSION SECTION
   ========================================================================== */

.mission {
    padding: 5rem 2rem;
    background: var(--light-gray);
}

.mission-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

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

.mission-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    border: 1px solid var(--soft-gray);
}

.mission-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--logo-blue);
}

.mission-icon {
    font-size: 2.5rem;
    color: var(--logo-blue);
    margin-bottom: 1.5rem;
}

.mission-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.mission-item p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--soft-coral) 0%, var(--peach) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: rgba(45, 45, 45, 0.9);
}

.cta .btn-primary {
    background: var(--navy);
    color: var(--white);
}

.cta .btn-primary:hover {
    background: var(--deep-blue);
    box-shadow: 0 12px 35px rgba(26, 77, 111, 0.4);
}

.cta .btn-secondary {
    background: var(--white);
    color: var(--soft-coral);
    border-color: var(--white);
}

.cta .btn-secondary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

#site-footer {
    background: var(--charcoal);
    color: var(--white);
}

.footer-main {
    padding: 4rem 2rem 3rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--muted-blue);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.footer-about p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-size: 1.3rem;
    color: var(--logo-blue);
    margin-bottom: 1rem;
}

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

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

.footer-social a:hover {
    background: var(--logo-blue);
    transform: translateY(-3px);
}

.footer-menu,
.contact-list,
.shop-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu a,
.contact-list a,
.shop-links a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    transition: all var(--transition-normal);
}

.footer-menu a:hover,
.contact-list a:hover,
.shop-links a:hover {
    color: var(--muted-blue);
    transform: translateX(5px);
}

.footer-bottom {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    opacity: 0.6;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--muted-blue);
}

.footer-legal .separator {
    opacity: 0.3;
}

/* ==========================================================================
   SHOP PAGE STYLES
   ========================================================================== */

.shop-hero {
    padding: calc(var(--header-height) + 60px) 2rem 4rem;
    background: linear-gradient(135deg, #e8e8e8 0%, #f0f0f0 100%);
    text-align: center;
}

.shop-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.shop-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.shop-hero p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.free-shipping-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    color: var(--navy);
    font-weight: 600;
}

.free-shipping-badge i {
    color: var(--logo-blue);
}

.shop-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.shop-container {
    max-width: 1400px;
    margin: 0 auto;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.results-count {
    color: var(--dark-gray);
}

.shop-ordering select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--soft-gray);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-size: 0.9rem;
    color: var(--charcoal);
}

.shop-pagination {
    margin-top: 3rem;
    text-align: center;
}

.shop-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    margin: 0 0.25rem;
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--charcoal);
    border: 1px solid var(--soft-gray);
    transition: all var(--transition-fast);
}

.shop-pagination .page-numbers:hover,
.shop-pagination .page-numbers.current {
    background: var(--logo-blue);
    color: var(--white);
    border-color: var(--logo-blue);
}

.no-products-found {
    text-align: center;
    padding: 4rem 2rem;
}

.no-products-icon {
    font-size: 4rem;
    color: var(--soft-gray);
    margin-bottom: 1.5rem;
}

.no-products-found h2 {
    margin-bottom: 1rem;
}

.no-products-found p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

/* Info Section */
.info-section {
    padding: 4rem 2rem;
    background: var(--soft-gray);
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-box {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.info-icon {
    font-size: 2.5rem;
    color: var(--logo-blue);
    margin-bottom: 1rem;
}

.info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.info-box p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   MY STORY PAGE - TIMELINE
   ========================================================================== */

.story-hero {
    padding: calc(var(--header-height) + 60px) 2rem 4rem;
    background: linear-gradient(135deg, #e8e8e8 0%, #f0f0f0 100%);
    text-align: center;
}

.story-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.story-hero p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

.journey {
    padding: 5rem 2rem;
    background: var(--light-gray);
}

.journey-container {
    max-width: 1400px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--logo-blue), var(--muted-blue));
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.timeline-item.active {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(even) .timeline-content {
    order: 2;
}

.timeline-item:nth-child(even) .timeline-image {
    order: 1;
}

.timeline-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--soft-gray);
    position: relative;
    transition: all var(--transition-normal);
}

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

.timeline-year {
    position: absolute;
    top: -15px;
    left: 25px;
    background: linear-gradient(135deg, var(--soft-coral), var(--peach));
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.timeline-content p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}

.timeline-content p strong {
    color: var(--navy);
}

.timeline-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-slow);
}

.timeline-image:hover img {
    transform: scale(1.02);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--logo-blue);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 0 8px rgba(0, 168, 232, 0.1);
}

/* Testimony Section */
.testimony {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%);
    color: var(--white);
}

.testimony-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: var(--muted-blue);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.testimony-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimony-author {
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ==========================================================================
   GALLERY PAGE
   ========================================================================== */

.gallery-hero {
    padding: calc(var(--header-height) + 60px) 2rem 4rem;
    background: linear-gradient(135deg, #e8e8e8 0%, #f0f0f0 100%);
    text-align: center;
}

.gallery-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.gallery-hero p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

.gallery-full {
    padding: 5rem 2rem;
    background: var(--white);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-slow);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.gallery-item-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 77, 111, 0.95), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.gallery-overlay .price {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-hero {
    padding: calc(var(--header-height) + 60px) 2rem 4rem;
    background: linear-gradient(135deg, #e8e8e8 0%, #f0f0f0 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

.contact-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-size: 1.05rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Contact Info Items */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.info-item:hover {
    background: #e8f4f8;
    transform: translateX(5px);
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--logo-blue);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 1.3rem;
}

.info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.info-content p,
.info-content a {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.info-content a {
    transition: color var(--transition-fast);
}

.info-content a:hover {
    color: var(--logo-blue);
}

/* Social Section */
.social-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--soft-gray);
}

.social-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-section h3 i {
    color: var(--logo-blue);
}

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

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--logo-blue);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--deep-blue);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--navy);
}

/* Contact Form Messages - Contact Form 7 Style */
#form-messages {
    margin-bottom: 1.5rem;
}

.form-success,
.form-error {
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.form-success i {
    font-size: 1.25rem;
    color: #28a745;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.form-error i {
    font-size: 1.25rem;
    color: #dc3545;
}

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

/* Old styles - keeping for compatibility */
#form-messages.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#form-messages.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--logo-blue);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--soft-gray);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--charcoal);
    background: var(--white);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--logo-blue);
    box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.1);
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem 2rem;
    background: var(--logo-blue);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-sm);
}

.btn-submit:hover {
    background: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-submit:active {
    transform: translateY(0);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-align: center;
}

/* CTA Boxes */
.cta-boxes {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cta-boxes-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.cta-box {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
    border-top: 4px solid var(--peach);
}

.cta-box.blue {
    border-top-color: var(--logo-blue);
}

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

.cta-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.cta-box h3 i {
    color: var(--peach);
}

.cta-box.blue h3 i {
    color: var(--logo-blue);
}

.cta-box p {
    font-size: 1.05rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--peach);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.btn-cta.blue {
    background: var(--logo-blue);
}

.btn-cta:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.btn-cta.blue:hover {
    background: var(--deep-blue);
}

.btn-cta i {
    transition: transform var(--transition-fast);
}

.btn-cta:hover i {
    transform: translateX(3px);
}

/* ==========================================================================
   404 ERROR PAGE
   ========================================================================== */

.error-404 {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-height) + 40px) 2rem 4rem;
    background: linear-gradient(135deg, #e8e8e8 0%, #f0f0f0 100%);
}

.error-content {
    max-width: 600px;
}

.error-content h1 {
    font-size: clamp(5rem, 15vw, 10rem);
    color: var(--logo-blue);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.error-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.error-content p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

/* ==========================================================================
   WOOCOMMERCE STYLES
   ========================================================================== */

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

.woocommerce ul.products li.product {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.woocommerce ul.products li.product a {
    text-decoration: none;
}

.woocommerce ul.products li.product img {
    width: 100%;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
    margin: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--navy);
    padding: 1rem 1.5rem 0.5rem;
    margin: 0;
}

.woocommerce ul.products li.product .price {
    color: var(--logo-blue);
    font-weight: 700;
    font-size: 1.15rem;
    padding: 0 1.5rem 1rem;
    display: block;
}

.woocommerce ul.products li.product .button {
    display: block;
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 1rem;
    font-weight: 600;
    transition: background var(--transition-fast);
    border-radius: 0;
    margin: 0;
}

.woocommerce ul.products li.product .button:hover {
    background: var(--logo-blue);
}

/* WooCommerce Cart & Checkout Page Fixes */
body.woocommerce-cart,
body.woocommerce-checkout {
    background: var(--light-gray);
    padding-top: var(--header-height);
}

body.admin-bar.woocommerce-cart,
body.admin-bar.woocommerce-checkout {
    padding-top: calc(var(--header-height) + 32px);
}

.woocommerce-page .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN - TABLETS (max 968px)
   ========================================================================== */

@media (max-width: 968px) {
    :root {
        --header-height: 70px;
    }

    nav {
        padding: 0 1.5rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 280px;
        height: calc(100vh - var(--header-height));
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-slow);
        align-items: flex-start;
        gap: 0;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        padding: 1rem 0;
        width: 100%;
        border-bottom: 1px solid var(--soft-gray);
    }

    .nav-links a::after {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Hero */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero {
        padding-top: calc(var(--header-height) + 30px);
        padding-bottom: 4rem;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-image img {
        max-height: 400px;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    /* About */
    .about-brief-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-boxes-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Timeline - IMPORTANT: Mobile Timeline Fix */
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 50px;
        gap: 1.5rem;
    }

    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(even) .timeline-image {
        order: unset;
    }

    .timeline-dot {
        left: 20px;
        top: 30px;
        transform: translateX(-50%);
    }

    .timeline-image {
        order: 1 !important;
    }

    .timeline-content {
        order: 2 !important;
        padding: 2rem 1.5rem;
    }

    .timeline-image img {
        max-height: 280px;
    }

    /* Cart Sidebar */
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN - SMALL TABLETS & LARGE PHONES (max 768px)
   ========================================================================== */

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 320px;
    }

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

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

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

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

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-menu a,
    .contact-list a,
    .shop-links a {
        justify-content: center;
    }

    .footer-menu a:hover,
    .contact-list a:hover,
    .shop-links a:hover {
        transform: none;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN - MOBILE PHONES (max 480px)
   ========================================================================== */

@media (max-width: 480px) {
    :root {
        --header-height: 60px;
    }

    body {
        font-size: 15px;
    }

    nav {
        padding: 0 1rem;
    }

    .logo img {
        height: 35px;
    }

    .logo span,
    .logo .site-title {
        font-size: 1.1rem;
    }

    .nav-links {
        width: 100%;
        top: var(--header-height);
        height: calc(100vh - var(--header-height));
    }

    /* Hero */
    .hero {
        padding: calc(var(--header-height) + 20px) 1rem 3rem;
    }

    .hero-container {
        padding: 0 0.5rem;
    }

    .hero-tag {
        font-size: 0.65rem;
        padding: 0.5rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-image img {
        max-height: 300px;
        border-radius: var(--radius-md);
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .stat-item p {
        font-size: 0.75rem;
    }

    /* Buttons */
    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Sections */
    .about-brief,
    .featured-products,
    .mission,
    .cta,
    .gallery-full,
    .journey,
    .shop-section,
    .contact-section,
    .info-section {
        padding: 3rem 1rem;
    }

    .cta-boxes {
        padding: 3rem 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .info-item {
        padding: 1.25rem;
    }

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

    .section-header p {
        font-size: 1rem;
    }

    /* Timeline Mobile */
    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 40px;
    }

    .timeline-dot {
        left: 15px;
        width: 16px;
        height: 16px;
    }

    .timeline-content {
        padding: 1.5rem 1rem;
    }

    .timeline-content h3 {
        font-size: 1.25rem;
    }

    .timeline-year {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        left: 15px;
        top: -12px;
    }

    .timeline-image img {
        max-height: 220px;
    }

    /* Shop Hero */
    .shop-hero,
    .story-hero,
    .gallery-hero,
    .contact-hero {
        padding: calc(var(--header-height) + 30px) 1rem 2.5rem;
    }

    .shop-hero h1,
    .story-hero h1,
    .gallery-hero h1,
    .contact-hero h1 {
        font-size: 1.75rem;
    }

    .free-shipping-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    /* 404 Page */
    .error-content h1 {
        font-size: 4rem;
    }

    .error-content h2 {
        font-size: 1.3rem;
    }

    /* Cart Sidebar */
    .cart-header {
        padding: 1rem;
    }

    .cart-header h3 {
        font-size: 1rem;
    }

    .woocommerce-mini-cart-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .woocommerce-mini-cart-item img {
        width: 60px;
        height: 60px;
    }

    /* Footer */
    .footer-main {
        padding: 3rem 1rem 2rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN - VERY SMALL PHONES (max 360px)
   ========================================================================== */

@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-tag {
        font-size: 0.6rem;
    }

    .btn {
        padding: 0.8rem 1.25rem;
        font-size: 0.85rem;
    }

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

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .error-content h1 {
        font-size: 3rem;
    }
}

/* ==========================================================================
   LARGE SCREENS (min 1600px)
   ========================================================================== */

@media (min-width: 1600px) {
    .hero-container,
    .about-brief-container,
    .products-container,
    .mission-container,
    .gallery-container,
    .journey-container,
    .shop-container,
    .info-container {
        max-width: 1600px;
    }

    .hero-content h1 {
        font-size: 4.5rem;
    }

    .hero-image img {
        max-height: 700px;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
    #site-header,
    .cart-sidebar,
    .cart-overlay,
    .mobile-toggle,
    .btn,
    .cta-buttons {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero,
    .about-brief,
    .featured-products,
    .mission,
    .cta {
        padding: 2rem 0;
    }

    a {
        color: black;
        text-decoration: underline;
    }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .scroll-animate {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   HIGH CONTRAST MODE
   ========================================================================== */

@media (prefers-contrast: high) {
    :root {
        --soft-gray: #d0d0d0;
        --light-gray: #ffffff;
    }

    .btn {
        border: 2px solid currentColor;
    }
}

/* ==========================================================================
   EMPTY CART STYLES
   ========================================================================== */

.empty-cart-page {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart-icon {
    font-size: 5rem;
    color: var(--soft-gray);
    margin-bottom: 1.5rem;
}

.empty-cart-page h2 {
    margin-bottom: 1rem;
}

.empty-cart-page p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
}
