/**
 * DEB ENTERPRISE - ASTRA CHILD THEME
 * Complete Stylesheet
 * Primary Color: #73AC4E
 */

/* ========== CSS VARIABLES ========== */
:root {
    --primary: #73AC4E;
    --primary-dark: #5C8A3E;
    --primary-light: #8FBF6A;
    --dark: #1A1A1A;
    --gray: #666666;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul, ol {
    list-style: none;
}

input, textarea, select {
    font-family: inherit;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
}

.logo-deb {
    color: var(--primary);
}

.site-logo img {
    max-height: 50px;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding: 8px 0;
}

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

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

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

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-gray);
    transition: var(--transition);
}

.cart-icon:hover {
    background: var(--primary);
    color: var(--white);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: var(--white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========== MAIN CONTENT ========== */
.site-main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    width: 100%;
}

.container {
    width: 100%;
    max-width: 100%;
    padding: 0 80px;
    margin: 0 auto;
}

/* ========== HERO SLIDER ========== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(115,172,78,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 30px;
    opacity: 0.95;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    z-index: 3;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--white);
    color: var(--primary);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transition: var(--transition);
    cursor: pointer;
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========== SECTIONS ========== */
.section {
    padding: 100px 0;
    width: 100%;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark);
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--gray);
    margin-bottom: 60px;
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 120px 0 80px;
    text-align: center;
    width: 100%;
}

.page-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
}

/* ========== ABOUT BOX ========== */
.about-box {
    background: var(--light-gray);
    padding: 60px;
    border-radius: var(--radius);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-box p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
}

/* ========== FEATURES GRID ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* ========== PRODUCTS GRID ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: var(--light-gray);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.product-card .button,
.product-card .add_to_cart_button {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    display: block;
}

.product-card .button:hover,
.product-card .add_to_cart_button:hover {
    background: var(--primary-dark);
}

/* ========== SINGLE PRODUCT PAGE ========== */
.single-product-wrapper {
    padding: 40px 0 100px;
    width: 100%;
}

.product-container {
    max-width: 100%;
    padding: 0 80px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.woocommerce-product-gallery__wrapper {
    margin-bottom: 20px;
}

.product-details {
    padding: 20px 0;
}

.product-title-single {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.product-price-single {
    font-size: 38px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 25px;
}

.product-excerpt {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.cart .quantity input {
    width: 80px;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-right: 15px;
}

.cart button.single_add_to_cart_button {
    background: var(--primary);
    color: var(--white);
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: var(--radius);
    border: none;
    transition: var(--transition);
}

.cart button.single_add_to_cart_button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.product-meta-single {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: var(--radius);
}

.meta-item {
    margin-bottom: 12px;
    font-size: 15px;
}

.meta-item:last-child {
    margin-bottom: 0;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.badge-item {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--primary);
    font-weight: 600;
}

.badge-item span {
    color: var(--primary);
    font-size: 20px;
    margin-right: 5px;
}

/* ========== CART PAGE ========== */
.woocommerce-cart,
.cart-page-wrapper {
    background: var(--light-gray);
    padding: 60px 0 100px;
}

.woocommerce-cart .page-header,
.woocommerce-checkout .page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.woocommerce-cart-form {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.woocommerce table.shop_table {
    width: 100%;
    border: none;
    background: transparent;
}

.woocommerce table.shop_table thead {
    background: var(--primary);
    color: var(--white);
}

.woocommerce table.shop_table thead th {
    padding: 20px 15px;
    font-weight: 700;
    border: none;
    text-align: left;
}

.woocommerce table.shop_table tbody tr {
    background: var(--white);
}

.woocommerce table.shop_table tbody td {
    padding: 25px 15px;
    border-bottom: 1px solid var(--light-gray);
    vertical-align: middle;
}

.woocommerce table.shop_table .product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.woocommerce table.shop_table .product-name a {
    font-weight: 600;
    color: var(--dark);
    font-size: 16px;
}

.woocommerce table.shop_table .product-name a:hover {
    color: var(--primary);
}

.woocommerce table.shop_table .product-price,
.woocommerce table.shop_table .product-subtotal {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.woocommerce table.shop_table .product-remove a {
    color: #ff4444;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
}

.woocommerce table.shop_table .actions {
    background: var(--light-gray);
    padding: 25px !important;
    text-align: right;
}

.woocommerce table.shop_table .actions button {
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
}

.cart-collaterals {
    margin-top: 40px;
}

.cart-totals {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 500px;
    margin-left: auto;
}

.cart_totals h2 {
    color: var(--dark);
    margin-bottom: 25px;
    font-size: 24px;
}

.cart_totals table th,
.cart_totals table td {
    padding: 15px 0;
    border-top: 1px solid var(--light-gray);
}

.cart_totals .order-total th,
.cart_totals .order-total td {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    border-top: 2px solid var(--primary);
    padding-top: 20px;
}

/* ========== CHECKOUT PAGE ========== */
.woocommerce-checkout {
    background: var(--light-gray);
    padding-bottom: 80px;
}

.woocommerce-checkout form.checkout {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 50px;
    align-items: start;
}

.woocommerce-checkout .col2-set {
    width: 100%;
    max-width: none;
    float: none;
    margin: 0;
    grid-column: 1;
}

.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
    width: 100%;
    float: none;
    padding: 0;
    margin-bottom: 30px;
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
    grid-column: 2;
    grid-row: 1 / 999;
    width: 100%;
    max-width: none;
    float: none;
}

.woocommerce-checkout #order_review {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.woocommerce-checkout #order_review_heading {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    background: transparent;
    padding: 0;
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 700;
}

.woocommerce form .form-row {
    margin-bottom: 20px;
}

.woocommerce form .form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100%;
    padding: 14px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
    font-size: 15px;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: var(--primary);
    outline: none;
}

.woocommerce #payment {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.woocommerce-checkout #payment ul.payment_methods {
    border: none;
    padding: 0;
    margin-bottom: 25px;
    list-style: none;
}

.woocommerce-checkout #payment div.payment_box {
    background: var(--light-gray);
    border-radius: 8px;
    margin-top: 15px;
    padding: 20px;
}

.woocommerce-page button.button,
.woocommerce-page a.button,
.woocommerce-page input.button,
.woocommerce-page #place_order {
    background: var(--primary);
    color: var(--white);
    padding: 16px 40px;
    border-radius: var(--radius);
    font-weight: 700;
    border: none;
    transition: var(--transition);
    font-size: 16px;
    width: 100%;
    display: block;
    text-align: center;
    cursor: pointer;
}

.woocommerce-page button.button:hover,
.woocommerce-page #place_order:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========== CATEGORIES PAGE ========== */
.alphabet-grid {
    display: grid;
    grid-template-columns: repeat(13, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.alphabet-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.alphabet-card:not(.disabled):hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.alphabet-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--light-gray);
}

.alphabet-letter {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
}

.alphabet-card.disabled .alphabet-letter {
    color: var(--gray);
}

.alphabet-count {
    font-size: 14px;
    color: var(--gray);
    font-weight: 600;
}

.categories-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-item {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.category-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.category-item span {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

/* ========== FOOTER ========== */
.site-footer {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: var(--white);
    width: 100%;
}

.footer-container {
    width: 100%;
}

.footer-grid {
    max-width: 100%;
    margin: 0 auto;
    padding: 80px 80px 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 800;
}

.footer-col p {
    color: #CCCCCC;
    line-height: 1.8;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #CCCCCC;
}

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

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 12px;
    color: #CCCCCC;
}

.contact-info a {
    color: var(--primary);
}

.footer-bottom {
    padding: 30px 80px;
    text-align: center;
    color: #999;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .header-container {
        padding: 0 40px;
    }
    
    .footer-grid {
        padding: 60px 40px 40px;
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        padding: 30px 40px;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .alphabet-grid {
        grid-template-columns: repeat(9, 1fr);
    }
    
    .categories-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-container {
        padding: 0 40px;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .woocommerce-checkout form.checkout {
        padding: 0 40px;
        grid-template-columns: 1fr;
    }
    
    .woocommerce-checkout .col2-set,
    .woocommerce-checkout #order_review_heading,
    .woocommerce-checkout #order_review {
        grid-column: 1;
    }
    
    .woocommerce-checkout #order_review {
        position: static;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-container {
        padding: 0 20px;
        height: 70px;
    }
    
    .site-main {
        margin-top: 70px;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        transition: var(--transition);
        box-shadow: var(--shadow);
        z-index: 999;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-menu li {
        border-bottom: 1px solid var(--light-gray);
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-slider {
        height: 450px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .alphabet-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
    }
    
    .alphabet-card {
        padding: 20px 10px;
    }
    
    .alphabet-letter {
        font-size: 28px;
    }
    
    .alphabet-count {
        font-size: 11px;
    }
    
    .categories-list {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        padding: 60px 20px 40px;
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        padding: 30px 20px;
    }
    
    .about-box {
        padding: 40px 30px;
    }
    
    /* Single Product Mobile */
    .product-container {
        padding: 0 20px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-gallery {
        position: static;
    }
    
    .product-title-single {
        font-size: 28px;
    }
    
    .product-price-single {
        font-size: 32px;
    }
    
    .trust-badges {
        gap: 10px;
    }
    
    .badge-item {
        padding: 15px;
    }
    
    /* Cart Mobile */
    .woocommerce table.shop_table {
        font-size: 14px;
    }
    
    .woocommerce table.shop_table thead {
        display: none;
    }
    
    .woocommerce table.shop_table tbody tr {
        display: block;
        margin-bottom: 30px;
        background: var(--white);
        border-radius: var(--radius);
        padding: 20px;
        box-shadow: var(--shadow);
        position: relative;
    }
    
    .woocommerce table.shop_table tbody td {
        display: block;
        padding: 10px 0;
        border: none;
        text-align: left !important;
    }
    
    .woocommerce table.shop_table tbody td::before {
        content: attr(data-title) ": ";
        font-weight: 700;
        margin-right: 10px;
    }
    
    .woocommerce table.shop_table .product-thumbnail {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .woocommerce table.shop_table .product-thumbnail::before {
        display: none;
    }
    
    .woocommerce table.shop_table .product-thumbnail img {
        width: 120px;
        height: 120px;
    }
    
    .woocommerce table.shop_table .product-remove {
        text-align: right;
        position: absolute;
        top: 15px;
        right: 15px;
    }
    
    .woocommerce table.shop_table .product-remove::before {
        display: none;
    }
    
    .woocommerce table.shop_table .actions {
        display: block;
        padding: 20px !important;
    }
    
    .woocommerce table.shop_table .actions button {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .cart-totals {
        max-width: 100%;
        margin: 20px 0 0 0;
        padding: 30px 20px;
    }
    
    /* Checkout Mobile */
    .woocommerce-checkout form.checkout {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .woocommerce-checkout #order_review {
        padding: 25px 20px;
    }
    
    .woocommerce-checkout .woocommerce-billing-fields,
    .woocommerce-checkout .woocommerce-shipping-fields,
    .woocommerce-checkout .woocommerce-additional-fields {
        padding: 25px 20px;
    }
    
    .woocommerce form .form-row input.input-text,
    .woocommerce form .form-row textarea,
    .woocommerce form .form-row select {
        font-size: 16px;
        padding: 12px;
    }
    
    .woocommerce #payment {
        padding: 25px 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .alphabet-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .alphabet-card {
        padding: 15px 8px;
    }
    
    .alphabet-letter {
        font-size: 22px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .product-title-single {
        font-size: 24px;
    }
    
    .product-price-single {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
}

/* ========== WOOCOMMERCE SPECIFIC OVERRIDES ========== */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background: var(--light-gray);
    border-left: 4px solid var(--primary);
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    list-style: none;
}

.woocommerce-error {
    border-left-color: #ff4444;
}

.woocommerce-message::before,
.woocommerce-info::before {
    content: "✓ ";
    color: var(--primary);
    font-weight: 900;
    margin-right: 8px;
}

.woocommerce .quantity input.qty {
    padding: 10px 12px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    width: 80px;
    text-align: center;
    font-weight: 600;
}

    display: none;
}
/* Proceed to Checkout Button - Green Color */
.woocommerce-page .wc-proceed-to-checkout a.checkout-button,
.woocommerce .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout .button,
.woocommerce-page a.checkout-button {
    background: #73AC4E !important;
    color: #FFFFFF !important;
    padding: 16px 40px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    border: none !important;
    transition: all 0.3s ease !important;
    font-size: 16px !important;
    width: 100% !important;
    display: block !important;
    text-align: center !important;
}

.woocommerce-page .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout .button:hover {
    background: #5C8A3E !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12) !important;
}