/**
 * Te Wianki - Main Stylesheet
 * @package Te_Wianki
 */

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #FFFCF7;
    --beige: #EBE3D5;
    --ecru: #F7F3ED;
    --taupe: #D9CDB8;
    --warm-taupe: #C4B5A0;
    --dark-taupe: #9B8B7E;
    --charcoal: #3D3530;
    --text-dark: #2C2520;
    --text-light: #6B5D52;
    --accent-gold: #B8956A;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* ===================================
   Navigation
   =================================== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 7%;
    background-color: var(--ecru);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.03em;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--text-dark);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
    background: linear-gradient(135deg, var(--ecru) 0%, var(--beige) 100%);
    padding: 4rem 7%;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(184, 149, 106, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
    font-weight: 600;
}

.hero-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 520px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--charcoal);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background-color: var(--dark-taupe);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

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

/* ===================================
   Featured Wreaths Section
   =================================== */
.featured-wreaths {
    padding: 6rem 7%;
    background-color: var(--cream);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
    font-weight: 600;
    text-decoration: none;
}

.section-subtitle {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    text-decoration: none;
}

/* ===================================
   Products Grid
   =================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none !important;
    color: inherit;
    display: block;
}

.product-card * {
    text-decoration: none !important;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--warm-taupe);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 8px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-card:hover::after {
    opacity: 1;
}

.product-image {
    width: 100% !important;
    aspect-ratio: 3 / 4 !important;
    height: auto !important;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
    font-weight: 500;
    text-decoration: none;
}

.product-card:hover .product-name {
    color: var(--dark-taupe);
}

.product-price {
    font-size: 1.1rem;
    color: var(--warm-taupe);
    font-weight: 600;
    text-decoration: none;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: 6rem 7%;
    background-color: var(--ecru);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex-shrink: 0;
}

.about-image img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
    font-weight: 600;
}

.about-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   Newsletter Section
   =================================== */
.newsletter {
    padding: 5rem 7%;
    background: linear-gradient(135deg, var(--beige) 0%, var(--taupe) 100%);
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
    font-weight: 600;
}

.newsletter p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid var(--warm-taupe);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    background-color: white;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--dark-taupe);
    box-shadow: 0 0 0 3px rgba(155, 139, 126, 0.3);
}

.newsletter-button {
    padding: 1rem 2rem;
    background-color: var(--charcoal);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-button:hover {
    background-color: var(--dark-taupe);
}

/* ===================================
   Footer
   =================================== */
footer {
    padding: 3rem 7%;
    background-color: var(--ecru);
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-icons a {
    color: var(--dark-taupe);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: var(--charcoal);
}

.footer-text {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.03em;
}

/* ===================================
   Shop Page Header
   =================================== */
.page-header {
    padding: 5rem 7% 3rem;
    background: linear-gradient(135deg, var(--ecru) 0%, var(--beige) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.page-header p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--text-light);
}

/* ===================================
   Shop Section
   =================================== */
.shop-section {
    padding: 4rem 7%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===================================
   BEAUTIFUL SELECT STYLING FOR PRODUCT SORTING
   =================================== */

/* Wrapper dla sortowania i licznika produktów */
.woocommerce-ordering,
.woocommerce-result-count {
    margin-bottom: 2rem;
}

.woocommerce-result-count {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Pięknie ostylowany select */
.woocommerce-ordering select,
.orderby {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 280px;
    padding: 0.9rem 3rem 0.9rem 1.5rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: white;
    border: 1.5px solid var(--warm-taupe);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    letter-spacing: 0.02em;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239B8B7E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
}

.woocommerce-ordering select:hover,
.orderby:hover {
    border-color: var(--dark-taupe);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background-color: var(--ecru);
}

.woocommerce-ordering select:focus,
.orderby:focus {
    outline: none;
    border-color: var(--charcoal);
    box-shadow: 0 0 0 3px rgba(155, 139, 126, 0.2);
    background-color: white;
}

/* Kontener z sortowaniem i licznikiem */
.woocommerce-before-shop-loop {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6rem !important;
    padding-bottom: 3rem !important;
    border-bottom: 2px solid var(--taupe);
}

.shop-section .woocommerce-before-shop-loop {
    margin-bottom: 6rem !important;
}

.woocommerce.archive .woocommerce-before-shop-loop {
    margin-bottom: 6rem !important;
}

/* Style dla selecta w formularzu */
form.woocommerce-ordering {
    margin: 0;
    display: inline-block;
}

/* Opcje select */
.woocommerce-ordering select option,
.orderby option {
    padding: 0.5rem;
    font-family: 'Lato', sans-serif;
}

/* ===================================
   Single Product Page
   =================================== */
.product-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 7%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
}

.product-gallery {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    will-change: top;
}

/* Force sticky na wszystkie elementy galerii */
.woocommerce div.product div.images,
.woocommerce #content div.product div.images,
.woocommerce-page div.product div.images,
.woocommerce-page #content div.product div.images {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

/* WooCommerce product images */
.woocommerce-product-gallery {
    margin-bottom: 0;
    position: relative;
}

.woocommerce-product-gallery__wrapper {
    margin: 0;
    transition: opacity 0.3s;
}

.woocommerce-product-gallery__image {
    margin: 0 0 1.5rem 0;
}

.woocommerce-product-gallery__image img {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 3 / 4 !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

.woocommerce-product-gallery__image:first-child img {
    margin-bottom: 0;
}

/* WooCommerce gallery trigger (lightbox icon) */
.woocommerce-product-gallery__trigger {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.woocommerce-product-gallery__trigger:hover {
    background: white;
    transform: scale(1.1);
}

.flex-control-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.flex-control-thumbs li {
    list-style: none;
    margin: 0;
}

.flex-control-thumbs li img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.flex-control-thumbs li img:hover,
.flex-control-thumbs li img.flex-active {
    border-color: var(--warm-taupe);
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumbnail {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    border-color: var(--warm-taupe);
}

.product-details {
    padding-top: 1rem;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.breadcrumb a:hover {
    color: var(--text-dark);
}

/* WooCommerce single product styles */
.product_title {
    font-size: 3rem !important;
    margin-bottom: 1rem !important;
    color: var(--charcoal) !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 600 !important;
}

.price {
    font-size: 2rem !important;
    color: var(--warm-taupe) !important;
    font-weight: 600 !important;
    margin-bottom: 2rem !important;
    display: block;
}

.woocommerce-product-details__short-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.woocommerce-ordering select, .orderby {
    margin-bottom: 20px !important;
}

.product-features {
    background-color: var(--ecru);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.product-features h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--warm-taupe);
    font-size: 1.5rem;
    line-height: 1;
}

/* Add to cart button */
.single_add_to_cart_button,
.add-to-cart-button,
.button.alt {
    width: 100%;
    padding: 1.2rem 2rem !important;
    background-color: var(--charcoal) !important;
    color: white !important;
    border: none !important;
    border-radius: 4px !important;
    font-size: 1rem !important;
    font-family: 'Lato', sans-serif !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    margin-bottom: 1rem;
}

.single_add_to_cart_button:hover,
.add-to-cart-button:hover,
.button.alt:hover {
    background-color: var(--dark-taupe) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}

.care-instructions {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.care-instructions h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.care-instructions p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Quantity input with +/- buttons */
.quantity {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.qty-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--warm-taupe);
    border-radius: 4px;
    overflow: hidden;
    background-color: white;
}

.quantity input[type="number"] {
    padding: 0.8rem 1rem;
    border: none;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    width: 70px;
    text-align: center;
    -moz-appearance: textfield;
    appearance: textfield;
    background: white;
}

.quantity input[type="number"]::-webkit-outer-spin-button,
.quantity input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-btn {
    background-color: var(--ecru);
    border: none;
    padding: 0.8rem 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    min-width: 40px;
}

.qty-btn:hover {
    background-color: var(--warm-taupe);
    color: white;
}

.qty-btn:active {
    background-color: var(--dark-taupe);
}

/* ===================================
   Product Tabs (Opis, Informacje, Opinie)
   =================================== */
.woocommerce-tabs {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 7%;
}

.woocommerce-tabs ul.tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    border-bottom: 2px solid var(--taupe);
    gap: 0;
}

.woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
}

.woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 1rem 2rem;
    text-decoration: none;
    color: var(--text-light);
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.woocommerce-tabs ul.tabs li a:hover {
    color: var(--text-dark);
}

.woocommerce-tabs ul.tabs li.active a {
    color: var(--charcoal);
    border-bottom-color: var(--charcoal);
    font-weight: 600;
}

.woocommerce-tabs .panel {
    padding: 2rem 0;
}

.woocommerce-tabs .panel h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
    font-family: 'Playfair Display', serif;
}

.woocommerce-tabs .panel p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Related & Upsell Products */
.related.products,
.upsells.products {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 7%;
}

.related.products h2,
.upsells.products h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--charcoal);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

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

.related.products ul.products li.product,
.upsells.products ul.products li.product {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.related.products ul.products li.product:hover,
.upsells.products ul.products li.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.related.products ul.products li.product img,
.upsells.products ul.products li.product img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.related.products ul.products li.product:hover img,
.upsells.products ul.products li.product:hover img {
    transform: scale(1.05);
}

.related.products ul.products li.product .woocommerce-loop-product__title,
.upsells.products ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.4rem !important;
    margin: 1rem 1.5rem 0.5rem !important;
    color: var(--charcoal) !important;
    font-weight: 500 !important;
    display: block !important;
}

.related.products ul.products li.product .price,
.upsells.products ul.products li.product .price {
    font-size: 1.1rem !important;
    color: var(--warm-taupe) !important;
    font-weight: 600 !important;
    display: block !important;
    margin: 0 1.5rem 1.5rem !important;
}

/* ===================================
   WooCommerce Messages & Notices
   =================================== */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
}

.woocommerce-message {
    background-color: var(--ecru);
    color: var(--text-dark);
    border-left: 4px solid var(--accent-gold);
}

.woocommerce-info {
    background-color: var(--ecru);
    color: var(--text-dark);
    border-left: 4px solid var(--warm-taupe);
}

.woocommerce-error {
    background-color: #f8e8e8;
    color: #8b4545;
    border-left: 4px solid #c45858;
}

/* ===================================
   Pagination
   =================================== */
.woocommerce-pagination {
    margin-top: 3rem;
    text-align: center;
}

.woocommerce-pagination ul {
    display: inline-flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}

.woocommerce-pagination ul li {
    display: inline-block;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    background-color: white;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid var(--taupe);
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.woocommerce-pagination ul li a:hover,
.woocommerce-pagination ul li span.current {
    background-color: var(--charcoal);
    color: white;
    border-color: var(--charcoal);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    nav {
        padding: 1.5rem 5%;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .about-image img {
        width: 280px;
        height: 280px;
    }

    .product-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin: 3rem auto;
    }

    .product-gallery,
    .woocommerce div.product div.images {
        position: static;
    }

    .product_title {
        font-size: 2.5rem !important;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .woocommerce-before-shop-loop {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .woocommerce-ordering select,
    .orderby {
        width: 100%;
    }
}

@media (max-width: 640px) {
    nav {
        padding: 1rem 5%;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

    .hero {
        padding: 3rem 5%;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

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

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .featured-wreaths,
    .about-section,
    .newsletter {
        padding: 5rem 5%;
    }

    .page-header {
        padding: 4rem 5% 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .shop-section {
        padding: 3rem 5%;
    }

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

    .product-container {
        padding: 0 5%;
    }

    .product_title {
        font-size: 2rem !important;
    }

    .price {
        font-size: 1.5rem !important;
    }

    .thumbnail-grid,
    .flex-control-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   Utility Classes
   =================================== */
.woocommerce-wrapper {
    min-height: 60vh;
}

/* Hide WooCommerce default styling we don't need */
.woocommerce ul.products li.product .button {
    display: none;
}

.woocommerce ul.products li.product .price {
    display: none;
}

.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    display: none;
}

