/*
Theme Name: THOORIGA Shopify
Description: A modern Shopify-inspired WooCommerce theme for THOORIGA store. Features clean design, mobile-first approach, and optimized for conversions.
Author: Custom Development
Version: 1.0.0
Template: futurio-storefront
License: GPL v3
Text Domain: thooriga-shopify
*/

/* Modern Shopify-inspired Design Variables */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #f39c12;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --background-color: #ffffff;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #ecf0f1;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --header-height: 80px;
}

/* Simple Font Awesome 6 Fix */
.fas, .far, .fab {
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
}

.far {
    font-weight: 400 !important;
}

.fab {
    font-family: 'Font Awesome 6 Brands' !important;
    font-weight: 400 !important;
}

/* Header Actions Layout */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-actions .search-toggle,
.header-actions .account-toggle,
.header-actions .cart-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.header-actions .search-toggle:hover,
.header-actions .account-toggle:hover,
.header-actions .cart-toggle:hover {
    color: var(--secondary-color);
}

.cart-toggle {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    line-height: 1;
}

/* Enhanced Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="20" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="2.5" fill="rgba(255,255,255,0.06)"/><circle cx="10" cy="60" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="70" r="2" fill="rgba(255,255,255,0.08)"/></svg>');
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

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

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: slideInDown 1s ease-out;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.3s both;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff9a56 0%, #ff6b6b 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
    position: relative;
    overflow: hidden;
    animation: slideInUp 1s ease-out 0.6s both;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.6);
    color: white;
    text-decoration: none;
}

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

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

/* Enhanced Features Section */
.features-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="40" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.feature-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

/* Enhanced Categories Section */
.categories-section {
    padding: 5rem 0;
    background: white;
}

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

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    background: white;
    border: 1px solid #f1f3f4;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.category-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.08);
}

.category-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #6c757d;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.category-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.product-count {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Enhanced Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.06)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.04)"/></svg>');
    pointer-events: none;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.newsletter-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    background: white;
}

.newsletter-input-group input {
    flex: 1;
    padding: 1.25rem 1.5rem;
    border: none;
    font-size: 1rem;
    background: transparent;
    color: #2c3e50;
}

.newsletter-input-group input::placeholder {
    color: #6c757d;
}

.newsletter-input-group input:focus {
    outline: none;
}

.newsletter-input-group button {
    background: linear-gradient(135deg, #ff9a56 0%, #ff6b6b 100%);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-input-group button:hover {
    background: linear-gradient(135deg, #ff8a43 0%, #ff5252 100%);
    transform: translateX(-2px);
}

/* Homepage Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

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

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .newsletter-input-group {
        flex-direction: column;
        border-radius: 12px;
    }

    .newsletter-input-group input,
    .newsletter-input-group button {
        border-radius: 0;
    }

    .newsletter-input-group input {
        border-radius: 12px 12px 0 0;
    }

    .newsletter-input-group button {
        border-radius: 0 0 12px 12px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 4rem 0;
        min-height: 60vh;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

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

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

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

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

    .newsletter-section h2 {
        font-size: 2rem;
    }
}
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Search Results */
.search-results {
    padding: 2rem 0;
}

.search-results .page-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.search-results .page-title span {
    color: var(--secondary-color);
    font-weight: bold;
}

.search-count {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.no-results {
    text-align: center;
    padding: 3rem 0;
}

.no-results h2 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.search-form-container {
    margin: 2rem 0;
}

.suggestions {
    margin-top: 2rem;
}

.btn-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

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

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

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

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 1.5rem;
}

.post-title a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
}

.post-title a:hover {
    color: var(--secondary-color);
}

.post-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.post-meta span {
    margin-right: 1rem;
}

.post-excerpt {
    line-height: 1.6;
    margin: 1rem 0;
}

.read-more-btn {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.read-more-btn:hover {
    border-bottom-color: var(--secondary-color);
}

/* Page Styles */
.page-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 0;
}

.page-content {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
}

/* Enhanced Page Header */
.page-header {
    background: linear-gradient(135deg, #007185 0%, #005A6B 100%);
    color: white;
    padding: 4rem 0 3rem 0;
    margin-bottom: 0;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    pointer-events: none;
}

.page-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

/* Enhanced Page Content Area */
.page-content-area {
    background: white;
    margin: -2rem auto 0;
    max-width: 900px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.1);
    padding: 3rem 2rem 2rem;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

/* About Page Specific Styles */
.page-content-area h2,
.page-content-area h3 {
    color: #2c3e50;
    font-weight: 600;
    margin: 2.5rem 0 1rem 0;
    position: relative;
    padding-left: 2rem;
}

.page-content-area h2::before,
.page-content-area h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #007185 0%, #005A6B 100%);
    border-radius: 2px;
}

.page-content-area h2 {
    font-size: 1.75rem;
    color: #007185;
}

.page-content-area h3 {
    font-size: 1.4rem;
}

.page-content-area h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
}

/* Enhanced Paragraph Styling */
.page-content-area p {
    margin: 1rem 0;
    color: #495057;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Content Cards for Information Blocks */
.page-content-area > p {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #007185;
    margin: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-content-area > p:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Special styling for emphasized text */
.page-content-area strong {
    color: #007185;
    font-weight: 600;
}

/* Contact Information Styling */
.page-content-area p:contains("Address:"),
.page-content-area p:contains("Phone:"),
.page-content-area p:contains("Email:") {
    background: white;
    border: 1px solid #e9ecef;
    border-left: 4px solid #28a745;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Lists Styling */
.page-content-area ul,
.page-content-area ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.page-content-area li {
    margin: 0.5rem 0;
    color: #495057;
    line-height: 1.6;
}

/* Links Styling */
.page-content-area a {
    color: #007185;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.page-content-area a:hover {
    color: #005A6B;
    border-bottom-color: #005A6B;
}

/* About Page Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .page-content-area {
        margin: -1rem 1rem 0;
        padding: 2rem 1.5rem;
        border-radius: 15px 15px 0 0;
    }

    .page-content-area h2,
    .page-content-area h3 {
        font-size: 1.4rem;
        padding-left: 1.5rem;
        margin: 2rem 0 0.75rem 0;
    }

    .page-content-area > p {
        padding: 1.25rem;
        margin: 1.25rem 0;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 3rem 0 2rem 0;
    }

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

    .page-content-area {
        margin: -1rem 0.5rem 0;
        padding: 1.5rem 1rem;
        border-radius: 12px 12px 0 0;
    }

    .page-content-area h2,
    .page-content-area h3 {
        font-size: 1.25rem;
        padding-left: 1rem;
    }

    .page-content-area h2::before,
    .page-content-area h3::before {
        width: 3px;
    }

    .page-content-area > p {
        padding: 1rem;
        font-size: 1rem;
    }

    .page-content-area p {
        font-size: 1rem;
    }
}

/* WooCommerce Account Styles */
.account-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 1rem;
}

@media (max-width: 768px) {
    .account-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    background: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    height: fit-content;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin-bottom: 0.5rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
    background: var(--secondary-color);
    color: white;
}

.woocommerce-account .woocommerce-MyAccount-content {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Login Form Styles */
.woocommerce-form-login {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.woocommerce-form-login .form-row {
    margin-bottom: 1rem;
}

.woocommerce-form-login label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text-color);
}

.woocommerce-form-login input[type="text"],
.woocommerce-form-login input[type="email"],
.woocommerce-form-login input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.woocommerce-form-login input:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.woocommerce-form-login .button {
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.woocommerce-form-login .button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Modern Shop Layout */
.shop-container {
    background: #f5f5f5;
    min-height: 100vh;
}

.shop-header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.breadcrumb-section {
    margin-bottom: 1rem;
}

.breadcrumb-section .woocommerce-breadcrumb {
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb-section .woocommerce-breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
}

.shop-title {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: bold;
}

.shop-results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.results-count {
    color: var(--text-light);
    font-size: 0.95rem;
}

.shop-sorting select {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: white;
    font-size: 0.9rem;
}

.shop-content {
    padding: 2rem 0;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Shop Sidebar */
.shop-sidebar {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.sidebar-toggle {
    display: none;
}

.sidebar-toggle-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-bottom: 1rem;
}

.shop-sidebar .widget {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.shop-sidebar .widget:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.shop-sidebar .widget h3 {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 1rem;
}

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

.shop-sidebar .widget li {
    margin-bottom: 0.5rem;
}

.shop-sidebar .widget a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
    transition: var(--transition);
}

.shop-sidebar .widget a:hover {
    color: var(--secondary-color);
}

/* Amazon-style Filters */
.amazon-filters {
    margin-bottom: 2rem;
}

.filter-section {
    margin-bottom: 2rem;
    border-bottom: 1px solid #E7E7E7;
    padding-bottom: 1.5rem;
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F1111;
    margin: 0 0 1rem 0;
    padding: 0;
}

.filter-content {
    font-size: 0.9rem;
}

.filter-item {
    margin-bottom: 0.5rem;
}

.filter-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #007185;
    text-decoration: none;
    padding: 0.25rem 0;
    transition: color 0.2s ease;
}

.filter-link:hover {
    color: #C7511F;
    text-decoration: underline;
}

.filter-link.active {
    color: #C7511F;
    font-weight: 600;
}

.filter-link .count {
    color: #565959;
    font-size: 0.85rem;
}

.filter-link i {
    margin-right: 0.5rem;
    color: #007185;
    width: 14px;
}

/* Price Filter Styles */
.price-filter-form {
    margin-bottom: 1rem;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.price-input-group {
    flex: 1;
}

.price-input-group label {
    display: block;
    font-size: 0.8rem;
    color: #565959;
    margin-bottom: 0.25rem;
}

.price-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #D5D9D9;
    border-radius: 4px;
    font-size: 0.9rem;
    background: #FAFAFA;
}

.price-input:focus {
    outline: none;
    border-color: #007185;
    background: white;
}

.price-separator {
    color: #565959;
    font-weight: 600;
    margin: 0 0.25rem;
}

.price-filter-btn {
    background: #FF9900;
    color: #0F1111;
    border: 1px solid #FF9900;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    width: 100%;
}

.price-filter-btn:hover {
    background: #FA8900;
    border-color: #FA8900;
}

.quick-price-ranges {
    margin-top: 1rem;
}

.price-range-link {
    display: block;
    color: #007185;
    text-decoration: none;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.price-range-link:hover {
    color: #C7511F;
    text-decoration: underline;
}

/* Rating Filter Styles */
.rating-filter-link {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    color: #007185 !important;
    text-decoration: none;
    padding: 0.4rem 0;
    transition: color 0.2s ease;
}

.rating-filter-link:hover {
    color: #C7511F !important;
}

.rating-filter-link.active {
    color: #C7511F !important;
    font-weight: 600;
}

.star-rating {
    display: flex;
    gap: 1px;
}

.star-rating .fas.fa-star {
    color: #FF9900;
    font-size: 0.85rem;
}

.star-rating .far.fa-star {
    color: #CCCCCC;
    font-size: 0.85rem;
}

.rating-text {
    font-size: 0.9rem;
}

/* Clear Filters */
.clear-filters {
    text-align: center;
    padding: 1rem 0;
}

.clear-all-filters {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #F0F2F2;
    color: #007185;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.clear-all-filters:hover {
    background: #E0E2E2;
    color: #C7511F;
}

.clear-all-filters i {
    font-size: 0.8rem;
}

/* Products Grid */
.shop-main {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
}

/* REMOVED: Conflicting 3-column grid rules - using horizontal tiles instead */

.woocommerce ul.products li.product {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
    text-decoration: none;
    color: inherit;
}

.woocommerce ul.products li.product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

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

.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1rem;
    margin: 1rem 0 0.5rem 0;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.3;
    height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.woocommerce ul.products li.product .price {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: bold;
    margin: 0.5rem 0 1rem 0;
}

.woocommerce ul.products li.product .price del {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.woocommerce ul.products li.product .button {
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    width: 100%;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.woocommerce ul.products li.product .button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Sale Badge */
.woocommerce ul.products li.product .onsale {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

/* No Products Found */
.no-products-found {
    text-align: center;
    padding: 4rem 2rem;
}

.no-products-content i {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.no-products-content h2 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.no-products-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

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

.woocommerce nav.woocommerce-pagination ul li {
    margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: block;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .shop-sidebar {
        position: static;
        order: 2;
    }

    .sidebar-toggle {
        display: block;
    }

    .sidebar-content {
        display: none;
    }

    .sidebar-content.active {
        display: block;
    }

    .shop-main {
        order: 1;
        padding: 1rem;
    }

    body .woocommerce ul.products {
        gap: 1px !important;
    }

    .woocommerce ul.products li.product {
        padding: 1rem;
    }

    .woocommerce ul.products li.product img {
        height: 150px;
    }

    .shop-results-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .shop-title {
        font-size: 1.8rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-main {
        padding: 0.5rem;
    }
}

/* Global Styles Reset */
* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Modern Header Styles */
.site-header {
    background: var(--background-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    height: var(--header-height);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    gap: 2rem;
}

/* Site Branding */
.site-branding {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

/* Logo Styles */
.site-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    height: var(--header-height);
}

.site-logo:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.custom-logo-link {
    display: flex;
    align-items: center;
    height: var(--header-height);
}

.custom-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* Modern Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    justify-content: center;
}

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

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.main-navigation a:hover {
    color: var(--secondary-color);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-toggle,
.cart-toggle,
.account-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
}

.search-toggle i,
.cart-toggle i,
.account-toggle i {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', FontAwesome, sans-serif !important;
    font-style: normal;
    font-weight: 900;
    display: inline-block;
}

/* Fallback icons using Unicode symbols */
.search-toggle i:before {
    content: '\f002' !important; /* fa-search */
}

.account-toggle i:before {
    content: '\f007' !important; /* fa-user */
}

.cart-toggle i:before {
    content: '\f07a' !important; /* fa-shopping-cart */
}

/* Social media icons */
.fab.fa-facebook:before {
    content: '\f09a' !important;
}

.fab.fa-instagram:before {
    content: '\f16d' !important;
}

.fab.fa-twitter:before {
    content: '\f099' !important;
}

.fab.fa-whatsapp:before {
    content: '\f232' !important;
}

.search-toggle:hover,
.cart-toggle:hover,
.account-toggle:hover {
    background: var(--border-color);
    color: var(--secondary-color);
}

/* Hero Section - Shopify Style */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.hero-cta:hover {
    background: #e67e22;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Enhanced Featured Products Section */
.featured-products-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 1rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid #f1f3f4;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
}

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

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

.product-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #667eea;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #667eea;
}

.product-price del {
    color: #999;
    font-weight: 400;
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.product-actions {
    position: relative;
    z-index: 2;
}

.product-actions .button,
.product-actions .add_to_cart_button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.product-actions .button:hover,
.product-actions .add_to_cart_button:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.view-all-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

/* Features Section */
.features-section {
    background: #f8f9fa;
    padding: 4rem 0;
    margin: 3rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature-item {
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Footer */
.site-footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Tablet Design - Consistent with horizontal tiles */
@media (max-width: 1024px) and (min-width: 769px) {
    body .woocommerce ul.products {
        gap: 1px !important;
    }
}

/* Mobile Design */
@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    .header-container {
        padding: 0 15px;
        gap: 1rem;
    }

    .site-logo {
        font-size: 1.5rem;
        height: var(--header-height);
    }

    .custom-logo {
        max-height: 40px;
    }

    .main-navigation ul {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .search-toggle,
    .cart-toggle,
    .account-toggle {
        font-size: 1rem;
        padding: 0.4rem;
    }

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

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

    .container {
        padding: 0 15px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* WooCommerce Overrides */
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
    margin-bottom: 1rem;
}

/* REMOVED: Duplicate product styling - using consolidated Amazon-style rules */
    transition: var(--transition);
    margin: 0;
    float: none;
    width: auto;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Shopping Cart */
.woocommerce-cart-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.woocommerce .cart-collaterals {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Buttons */
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
    background: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    padding: 0.75rem 1.5rem;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
    background: #34495e;
    color: white;
}

.woocommerce button.button.alt,
.woocommerce a.button.alt {
    background: var(--secondary-color);
}

.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover {
    background: #e67e22;
}

/* Additional Homepage Sections */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.featured-products-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.view-all-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.view-all-btn:hover {
    background: #34495e;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Categories Section */
.categories-section {
    padding: 4rem 0;
}

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

.category-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.category-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-image {
    height: 150px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-placeholder {
    font-size: 3rem;
    color: var(--text-light);
}

.category-info {
    padding: 1.5rem;
}

.category-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.product-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.newsletter-input-group input {
    flex: 1;
    padding: 1rem;
    border: none;
    font-size: 1rem;
    outline: none;
}

.newsletter-input-group button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-input-group button:hover {
    background: #e67e22;
}

/* Product Actions */
.product-actions {
    margin-top: 1rem;
}

.product-actions .button {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.75rem;
}

/* No Image Placeholder */
.no-image {
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-style: italic;
}

/* Improved Mobile Styles */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-input-group input,
    .newsletter-input-group button {
        border-radius: var(--border-radius);
    }

    .newsletter-input-group input {
        margin-bottom: 1rem;
    }

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

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

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

/* Animation improvements */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page and Post Styles */
.page-container,
.single-container {
    padding: 4rem 0;
}

.page-content,
.single-content {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.page-header,
.entry-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.page-title,
.entry-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.entry-meta {
    color: var(--text-light);
    font-size: 0.9rem;
}

.entry-meta span {
    margin-right: 1rem;
}

.post-thumbnail {
    margin: 2rem 0;
    text-align: center;
}

.post-thumbnail img {
    border-radius: var(--border-radius);
    max-width: 100%;
    height: auto;
}

.entry-content,
.page-content-area {
    font-size: 1.1rem;
    line-height: 1.8;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.page-content-area h1,
.page-content-area h2,
.page-content-area h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content p,
.page-content-area p {
    margin-bottom: 1.5rem;
}

.entry-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.tags {
    color: var(--text-light);
}

/* Post Navigation */
/* Hide specific post navigation on product pages only */
.single-product .post-navigation,
.woocommerce-page .post-navigation {
    display: none !important;
}

.post-navigation {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
}

.nav-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

.nav-title {
    font-weight: 600;
    color: var(--primary-color);
}

/* Responsive adjustments for content */
@media (max-width: 768px) {
    .page-content,
    .single-content {
        padding: 2rem 1rem;
    }

    .page-title,
    .entry-title {
        font-size: 2rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
        gap: 0.5rem;
    }

    .site-logo {
        font-size: 1.3rem;
    }

    .custom-logo {
        max-height: 35px;
    }

    .main-navigation ul {
        gap: 0.75rem;
        font-size: 0.85rem;
    }

    .header-actions {
        gap: 0.25rem;
    }

    .search-toggle,
    .cart-toggle,
    .account-toggle {
        font-size: 0.9rem;
        padding: 0.3rem;
    }

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

/* Large screens */
@media (min-width: 1200px) {
    .header-container {
        padding: 0 40px;
    }

    .site-logo {
        font-size: 2rem;
    }

    .custom-logo {
        max-height: 60px;
    }

    .main-navigation ul {
        gap: 3rem;
    }
}

/* Simple Amazon-Style Override - Clean approach */
.amazon-shop-wrapper {
    background: #f3f3f3 !important;
    padding: 20px !important;
    min-height: 500px;
}

/* Override parent theme conflicts */
.amazon-shop-wrapper .woocommerce {
    max-width: none !important;
}

/* REMOVED: Duplicate conflicting grid rules - using consolidated horizontal tile layout */

.amazon-shop-wrapper .woocommerce ul.products::before,
.amazon-shop-wrapper .woocommerce ul.products::after {
    display: none !important;
}

.amazon-shop-wrapper .woocommerce ul.products li.product {
    background: white !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    padding: 15px !important;
    text-align: center !important;
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    position: relative !important;
    transition: all 0.3s ease !important;
}

.amazon-shop-wrapper .woocommerce ul.products li.product:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    transform: translateY(-1px) !important;
}

.amazon-shop-wrapper .woocommerce ul.products li.product img {
    width: 100% !important;
    height: auto !important;
    border-radius: 4px !important;
    max-width: none !important;
}

.amazon-shop-wrapper .woocommerce ul.products li.product h2,
.amazon-shop-wrapper .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px !important;
    margin: 10px 0 !important;
    color: #0F1111 !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
}

.amazon-shop-wrapper .woocommerce ul.products li.product .price {
    font-size: 16px !important;
    color: #B12704 !important;
    font-weight: bold !important;
    margin: 10px 0 !important;
}

.amazon-shop-wrapper .woocommerce ul.products li.product .price del {
    color: #999 !important;
    font-weight: normal !important;
}

.amazon-shop-wrapper .woocommerce ul.products li.product .button {
    background: #FF9900 !important;
    color: #0F1111 !important;
    border: 1px solid #FF9900 !important;
    border-radius: 4px !important;
    padding: 8px 16px !important;
    font-weight: 600 !important;
    width: 100% !important;
    text-decoration: none !important;
    display: block !important;
    margin-top: 10px !important;
}

.amazon-shop-wrapper .woocommerce ul.products li.product .button:hover {
    background: #FA8900 !important;
    color: #0F1111 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    body .woocommerce ul.products {
        gap: 1px !important;
    }

    .amazon-shop-wrapper .woocommerce ul.products li.product {
        padding: 10px !important;
    }

    .amazon-shop-wrapper {
        padding: 10px !important;
    }
}

.shop-header {
    background: white;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.shop-header .page-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
}

.shop-main {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.woocommerce-result-count {
    font-size: 0.9rem;
    color: var(--text-light);
}

.woocommerce-ordering select {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: white;
}

/* Amazon Product Grid - Override WooCommerce defaults */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 1.5rem !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    float: none !important;
}

.amazon-product-card,
.woocommerce ul.products li.product {
    background: white !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
    position: relative !important;
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

.amazon-product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.product-card-inner {
    padding: 1rem;
}

/* Product Image Section */
.product-image-section {
    position: relative;
    margin-bottom: 1rem;
}

.product-image-container {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8f9fa;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.no-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    height: 100%;
}

.no-image-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4444;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-actions-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.amazon-product-card:hover .product-actions-overlay {
    opacity: 1;
}

/* Quick view button styles removed - functionality was non-functional */

/* Product Info Section */
.product-brand {
    margin-bottom: 0.5rem;
}

.product-brand a {
    color: #007185;
    font-size: 0.85rem;
    text-decoration: none;
}

.product-brand a:hover {
    text-decoration: underline;
}

.product-title {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-title a {
    color: #0F1111;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
}

.product-title a:hover {
    color: #C7511F;
}

/* Star Rating */
.product-rating-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.star-rating-display {
    display: flex;
    align-items: center;
    gap: 2px;
}

.star-rating-display i {
    font-family: 'Font Awesome 6 Free', FontAwesome, sans-serif !important;
    font-style: normal;
    font-weight: 900;
    color: #ddd;
    font-size: 0.9rem;
    display: inline-block;
}

.star-rating-display i.filled {
    color: #FF9900;
}

.star-rating-display i:before {
    content: '\f005' !important;
}

/* Fallback stars using Unicode */
.no-fontawesome .star-rating-display i:before {
    content: '★' !important;
    font-family: serif !important;
}

.no-fontawesome .filter-stars i:before {
    content: '★' !important;
    font-family: serif !important;
}

.rating-count {
    color: #007185;
    font-size: 0.85rem;
    margin-left: 0.25rem;
}

.no-rating-text {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Price Section */
.product-price-section {
    margin-bottom: 0.75rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-display .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #B12704;
}

.price-display .price del {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
}

.savings-info {
    font-size: 0.85rem;
    color: #007600;
    margin-top: 0.25rem;
}

/* Shipping Info */
.shipping-info {
    margin-bottom: 0.75rem;
}

.prime-info {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #007185;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.prime-info i {
    color: #FF9900;
}

.delivery-date {
    font-size: 0.85rem;
    color: var(--text-color);
}

/* Stock Status */
.stock-status {
    margin-bottom: 1rem;
}

.in-stock {
    color: #007600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.out-of-stock {
    color: #B12704;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Add to Cart Section */
.product-cart-section {
    margin-bottom: 1rem;
}

.product-cart-section .button {
    width: 100%;
    background: #FF9900;
    color: #0F1111;
    border: 1px solid #FF9900;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-cart-section .button:hover {
    background: #FA8900;
    color: #0F1111;
    text-decoration: none;
}

/* Product Attributes */
.product-attributes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-attributes .attribute {
    background: #f0f2f2;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--text-color);
}

/* Shop Sidebar - Amazon Style */
.shop-sidebar {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    height: fit-content;
}

.shop-sidebar .widget {
    margin-bottom: 2rem;
}

.shop-sidebar .widget h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

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

.shop-sidebar .widget ul li {
    margin-bottom: 0.5rem;
}

.shop-sidebar .widget ul li a {
    color: #007185;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
}

.shop-sidebar .widget ul li a:hover {
    text-decoration: underline;
}

/* Pagination - Amazon Style */
.shop-pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.shop-pagination .page-numbers {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.shop-pagination .page-numbers li {
    margin: 0;
}

.shop-pagination .page-numbers a,
.shop-pagination .page-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: white;
    color: #0F1111;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.shop-pagination .page-numbers a:hover,
.shop-pagination .page-numbers .current {
    background: #FF9900;
    color: #0F1111;
    border-color: #FF9900;
}

/* Amazon-Style Filters */
.price-filter-widget .price-filter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.price-input-group {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.5rem;
    flex: 1;
}

.price-input-group span {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-right: 0.25rem;
}

.price-input-group input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.9rem;
}

.price-separator {
    color: var(--text-light);
    font-weight: 600;
}

.apply-price-filter {
    background: #FF9900;
    color: #0F1111;
    border: 1px solid #FF9900;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.apply-price-filter:hover {
    background: #FA8900;
}

/* Categories Filter */
.category-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-filter-list li {
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #f0f2f2;
    padding-bottom: 0.5rem;
}

.category-filter-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.category-filter-list li.active a {
    color: #FF9900;
    font-weight: 600;
}

.category-filter-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #007185;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.25rem 0;
}

.category-filter-list a:hover {
    color: #C7511F;
}

.category-count {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Rating Filter */
.rating-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rating-filter-list li {
    margin-bottom: 0.75rem;
}

.rating-filter-link {
    text-decoration: none;
    color: #007185;
}

.rating-filter-link:hover {
    color: #C7511F;
}

.filter-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.filter-stars i {
    font-family: 'Font Awesome 6 Free', FontAwesome, sans-serif !important;
    font-style: normal;
    font-weight: 900;
    font-size: 0.85rem;
    color: #ddd;
    display: inline-block;
}

.filter-stars i.filled {
    color: #FF9900;
}

.filter-stars i:before {
    content: '\f005' !important;
}

.rating-text {
    margin-left: 0.5rem;
    font-size: 0.85rem;
}

/* Attribute Filter */
.attribute-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.attribute-filter-list li {
    margin-bottom: 0.5rem;
}

.attribute-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.attribute-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    left: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 2px;
}

.attribute-checkbox:hover .checkmark {
    border-color: #FF9900;
}

.attribute-checkbox input:checked ~ .checkmark {
    background-color: #FF9900;
    border-color: #FF9900;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.attribute-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.attribute-checkbox .checkmark:after {
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.term-count {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-left: auto;
}

/* Mobile Responsive for Shop Page */
@media (max-width: 768px) {
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .shop-sidebar {
        order: -1;
        padding: 1rem;
    }

    .shop-sidebar .widget {
        margin-bottom: 1rem;
    }

    .woocommerce ul.products {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .amazon-product-card {
        border-radius: 6px;
    }

    .product-card-inner {
        padding: 0.75rem;
    }

    .price-inputs {
        flex-direction: column;
        align-items: stretch;
    }

    .price-separator {
        align-self: center;
        margin: 0.25rem 0;
    }
}

@media (max-width: 480px) {
    .shop-layout {
        padding: 0 10px;
    }

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

    .product-card-inner {
        padding: 0.5rem;
    }

    .product-title a {
        font-size: 0.85rem;
    }

    .product-cart-section .button {
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .woocommerce-result-count {
        text-align: center;
    }

    .woocommerce-ordering {
        text-align: center;
    }
}

/* Large desktop screens - Consistent with horizontal tiles */
@media (min-width: 1200px) {
    body .woocommerce ul.products {
        gap: 1px !important;
    }

    .shop-layout {
        grid-template-columns: 300px 1fr;
        gap: 3rem;
    }

    .amazon-product-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .amazon-product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
}

/* AMAZON-STYLE HORIZONTAL PRODUCT TILES - SUPER TIGHT */
body .woocommerce ul.products,
body .woocommerce-page ul.products,
body ul.products.columns-3,
body .woocommerce ul.products.columns-3 {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    background: white !important;
    border: 1px solid #E5E5E5 !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    /* Reset everything that could interfere */
    float: none !important;
    flex-wrap: unset !important;
    flex-direction: unset !important;
    align-items: unset !important;
    justify-content: unset !important;
}

/* Horizontal tile layout for each product - TIGHT */
body .woocommerce ul.products li,
body .woocommerce ul.products li.product,
body ul.products li.product {
    display: block !important;
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: none !important;
    grid-column: auto !important;
    box-sizing: border-box !important;
    background: white !important;
    border: 1px solid #E5E5E5 !important;
    border-bottom: none !important;
    border-radius: 0 !important;
}

body .woocommerce ul.products li:last-child {
    border-bottom: 1px solid #E5E5E5 !important;
}

/* Product card inner layout - COMPACT AMAZON STYLE */
.amazon-product-card .product-card-inner {
    display: flex !important;
    align-items: flex-start !important;
    padding: 12px !important;
    gap: 12px !important;
    min-height: 120px !important;
    position: relative !important;
    background: white !important;
}

/* Product image section - smaller and compact */
.amazon-product-card .product-image-section {
    flex: 0 0 120px !important;
    max-width: 120px !important;
    position: relative !important;
}

.amazon-product-card .product-image-container {
    width: 120px !important;
    height: 120px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: white !important;
    border: 1px solid #eee !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    padding: 4px !important;
}

.amazon-product-card .product-image-container img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    transition: transform 0.2s ease !important;
}

.amazon-product-card .product-image-container:hover img {
    transform: scale(1.02) !important;
}

/* Product info section - ULTRA COMPACT */
.amazon-product-card .product-info-section {
    flex: 1 !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}

/* Compact single-line layout */
.amazon-product-card .product-brand {
    display: inline !important;
    font-size: 11px !important;
    color: #565959 !important;
    text-transform: uppercase !important;
    margin: 0 !important;
    padding: 0 !important;
}

.amazon-product-card .product-brand a {
    color: #565959 !important;
    text-decoration: none !important;
}

.amazon-product-card .product-title {
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    margin: 2px 0 4px 0 !important;
    padding: 0 !important;
    display: block !important;
}

.amazon-product-card .product-title a {
    color: #007185 !important;
    text-decoration: none !important;
}

.amazon-product-card .product-title a:hover {
    color: #C7511F !important;
    text-decoration: underline !important;
}

/* Inline rating */
.amazon-product-card .product-rating-section {
    display: inline-block !important;
    margin: 0 0 4px 0 !important;
    padding: 0 !important;
}

.amazon-product-card .no-rating-text {
    font-size: 11px !important;
    color: #565959 !important;
}

/* Compact price display */
.amazon-product-card .product-price-section {
    margin: 4px 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
}

.amazon-product-card .price-display {
    display: inline !important;
}

.amazon-product-card .price-display del .woocommerce-Price-amount {
    font-size: 12px !important;
    color: #565959 !important;
    text-decoration: line-through !important;
}

.amazon-product-card .price-display ins .woocommerce-Price-amount {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #B12704 !important;
    text-decoration: none !important;
}

.amazon-product-card .savings-info {
    display: inline !important;
    margin-left: 8px !important;
}

.amazon-product-card .you-save {
    font-size: 11px !important;
    color: #CC0C39 !important;
    font-weight: 600 !important;
}

/* Compact shipping - single line */
.amazon-product-card .shipping-info {
    font-size: 12px !important;
    color: #007600 !important;
    margin: 4px 0 !important;
    padding: 0 !important;
}

.amazon-product-card .prime-info {
    display: inline !important;
    font-weight: 600 !important;
}

.amazon-product-card .prime-info i {
    font-size: 10px !important;
    margin-right: 2px !important;
}

.amazon-product-card .delivery-date {
    display: inline !important;
    font-size: 11px !important;
    color: #565959 !important;
    margin-left: 8px !important;
}

/* Inline stock status */
.amazon-product-card .stock-status {
    display: inline-block !important;
    font-size: 12px !important;
    margin: 4px 0 6px 0 !important;
    padding: 0 !important;
}

.amazon-product-card .in-stock,
.amazon-product-card .out-of-stock {
    font-weight: 600 !important;
    display: inline !important;
}

.amazon-product-card .in-stock {
    color: #007600 !important;
}

.amazon-product-card .out-of-stock {
    color: #B12704 !important;
}

.amazon-product-card .stock-status i {
    font-size: 10px !important;
    margin-right: 2px !important;
}

/* Compact cart button */
.amazon-product-card .product-cart-section {
    margin: 8px 0 0 0 !important;
    padding: 0 !important;
    text-align: right !important;
}

/* Hide redundant screen reader text that clutters display */
.amazon-product-card .screen-reader-text {
    display: none !important;
}

/* Clean up WooCommerce price text redundancy */
.amazon-product-card .price-display del[aria-hidden="true"] + .screen-reader-text,
.amazon-product-card .price-display ins[aria-hidden="true"] + .screen-reader-text,
.amazon-product-card .price-display .woocommerce-Price-amount[aria-hidden="true"] + .screen-reader-text {
    display: none !important;
}

/* Style the price text properly */
.amazon-product-card .price-display del[aria-hidden="true"] {
    display: inline !important;
}

.amazon-product-card .price-display ins[aria-hidden="true"] {
    display: inline !important;
}

/* Clean text spacing */
.amazon-product-card .price-display > * {
    margin-right: 0.3rem !important;
}

.amazon-product-card .price-display > *:last-child {
    margin-right: 0 !important;
}

/* Compact Add to Cart Buttons */
.amazon-product-card .button,
.amazon-product-card .add_to_cart_button,
.amazon-product-card .product_type_simple,
.amazon-product-card .product_type_external,
.amazon-product-card .product_type_grouped,
.amazon-product-card .product_type_variable {
    background: #FF9900 !important;
    color: #0F1111 !important;
    border: 1px solid #FF9900 !important;
    border-radius: 3px !important;
    padding: 4px 8px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    cursor: pointer !important;
    transition: all 0.15s ease !important;
    line-height: 1.2 !important;
    min-width: 70px !important;
    max-width: 120px !important;
    width: auto !important;
    text-align: center !important;
    margin: 0 !important;
}

.amazon-product-card .button:hover,
.amazon-product-card .add_to_cart_button:hover,
.amazon-product-card .product_type_simple:hover,
.amazon-product-card .product_type_external:hover,
.amazon-product-card .product_type_grouped:hover,
.amazon-product-card .product_type_variable:hover {
    background: #FA8900 !important;
    border-color: #FA8900 !important;
    color: #0F1111 !important;
    text-decoration: none !important;
}

/* Out of stock button - compact */
.amazon-product-card .out-of-stock-btn {
    background: #F0F2F2 !important;
    color: #565959 !important;
    border: 1px solid #D5D9D9 !important;
    cursor: not-allowed !important;
    padding: 4px 8px !important;
    font-size: 11px !important;
    border-radius: 3px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.15s ease !important;
    line-height: 1.2 !important;
    min-width: 70px !important;
    max-width: 120px !important;
    width: auto !important;
    text-align: center !important;
    margin: 0 !important;
}

.amazon-product-card .out-of-stock-btn:hover {
    background: #F0F2F2 !important;
    color: #565959 !important;
    border: 1px solid #D5D9D9 !important;
}

/* Special product type buttons - compact */
.amazon-product-card .product_type_external {
    background: #007185 !important;
    border-color: #007185 !important;
    color: white !important;
}

.amazon-product-card .product_type_external:hover {
    background: #005A6B !important;
    border-color: #005A6B !important;
    color: white !important;
}

.amazon-product-card .product_type_grouped,
.amazon-product-card .product_type_variable {
    background: white !important;
    color: #007185 !important;
    border: 1px solid #007185 !important;
}

.amazon-product-card .product_type_grouped:hover,
.amazon-product-card .product_type_variable:hover {
    background: #007185 !important;
    color: white !important;
}

/* Sale badge positioning */
.amazon-product-card .sale-badge {
    position: absolute !important;
    top: 0.5rem !important;
    left: 0.5rem !important;
    background: #B12704 !important;
    color: white !important;
    padding: 0.25rem 0.5rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    border-radius: 2px !important;
    z-index: 2 !important;
}

/* Hover effects */
.amazon-product-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    transform: none !important;
}

/* Action buttons */
.amazon-product-card .product-actions-overlay {
    position: absolute !important;
    top: 0.5rem !important;
    right: 0.5rem !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.amazon-product-card:hover .product-actions-overlay {
    opacity: 1 !important;
}

/* Amazon quick view button styles removed - functionality was non-functional */

/* Mobile responsive for horizontal tiles - COMPACT */
@media (max-width: 768px) {
    .amazon-product-card .product-card-inner {
        flex-direction: column !important;
        min-height: auto !important;
        padding: 8px !important;
        gap: 8px !important;
    }

    .amazon-product-card .product-image-section {
        flex: 0 0 auto !important;
        max-width: 100% !important;
        align-self: center !important;
    }

    .amazon-product-card .product-image-container {
        width: 100px !important;
        height: 100px !important;
        margin: 0 auto !important;
    }

    .amazon-product-card .product-info-section {
        text-align: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .amazon-product-card .product-title {
        font-size: 13px !important;
        margin: 4px 0 !important;
    }

    .amazon-product-card .price-display ins .woocommerce-Price-amount {
        font-size: 15px !important;
    }

    .amazon-product-card .button {
        width: 100% !important;
        min-width: auto !important;
        font-size: 11px !important;
        padding: 6px 8px !important;
    }
}

/* Ensure horizontal tiles are properly visible */
.amazon-product-card {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.amazon-product-card .product-card-inner {
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
}

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

.contact-page {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #007185 0%, #005A6B 100%);
    color: white;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    pointer-events: none;
}

.contact-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.contact-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0 0 0.5rem 0;
    font-style: italic;
}

.contact-intro {
    font-size: 1.1rem;
    opacity: 0.8;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Contact Layout */
.contact-main {
    padding: 3rem 0;
}

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

/* Contact Cards */
.contact-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 2rem;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.contact-card-header i {
    font-size: 1.5rem;
    color: #007185;
    background: rgba(0, 113, 133, 0.1);
    padding: 0.75rem;
    border-radius: 50%;
}

.contact-card-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 600;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007185;
    font-size: 1rem;
}

.contact-text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

.contact-text p {
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
}

.contact-link {
    color: #007185;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #005A6B;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

/* Store Hours */
.store-hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #2c3e50;
}

.time {
    color: #007185;
    font-weight: 500;
}

/* Quick Actions */
.quick-actions {
    margin-top: 2rem;
}

.quick-actions h3 {
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    color: #2c3e50;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #6c757d;
    font-weight: 600;
    transition: all 0.3s ease;
    justify-content: center;
}

.action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.call-btn:hover {
    border-color: #28a745;
    color: #28a745;
    background: rgba(40, 167, 69, 0.05);
}

.email-btn:hover {
    border-color: #007185;
    color: #007185;
    background: rgba(0, 113, 133, 0.05);
}

.whatsapp-btn:hover {
    border-color: #25d366;
    color: #25d366;
    background: rgba(37, 211, 102, 0.05);
}

.shop-btn:hover {
    border-color: #ff9900;
    color: #ff9900;
    background: rgba(255, 153, 0, 0.05);
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #495057;
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007185;
    box-shadow: 0 0 0 3px rgba(0, 113, 133, 0.1);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #007185;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.form-group textarea::placeholder {
    color: #6c757d;
    font-style: italic;
}

.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.submit-btn {
    background: linear-gradient(135deg, #007185 0%, #005A6B 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    min-width: 150px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 113, 133, 0.3);
    background: linear-gradient(135deg, #005A6B 0%, #004A57 100%);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 113, 133, 0.2);
}

.privacy-note {
    font-size: 0.85rem;
    color: #6c757d;
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 400px;
}

.privacy-note i {
    color: #28a745;
    font-size: 1rem;
}

/* Form validation styles */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #dc3545;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #28a745;
}

/* Single column form groups */
.form-group.full-width {
    grid-column: 1 / -1;
}

/* Contact Page Responsive Design */
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }

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

    .contact-card {
        padding: 1.5rem;
    }

    .submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 2rem 0;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .contact-main {
        padding: 2rem 0;
    }

    .contact-card {
        padding: 1rem;
    }

    .contact-card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.625rem 0.875rem;
        font-size: 0.9rem;
    }
}

/* ================================================
   SINGLE PRODUCT PAGE STYLES - AMAZON-INSPIRED
   ================================================ */

/* Main Container */
.single-product-container {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Breadcrumb Section */
.product-breadcrumb-section {
    background: white;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.product-breadcrumb-section .woocommerce-breadcrumb {
    font-size: 0.875rem;
    color: #6c757d;
}

.product-breadcrumb-section .woocommerce-breadcrumb a {
    color: #007185;
    text-decoration: none;
}

.product-breadcrumb-section .woocommerce-breadcrumb a:hover {
    text-decoration: underline;
}

/* Main Product Layout */
.product-main-section {
    background: white;
    padding: 1.5rem 0;
}

/* Extended Layout for Product Page */
.product-extended-layout {
    display: grid;
    grid-template-columns: 3fr 300px;
    gap: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.5rem;
    align-items: start;
}

/* Large Images Section */
.product-images-section-large {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.product-images-section-large .woocommerce-product-gallery {
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.product-images-section-large .woocommerce-product-gallery__wrapper {
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.product-images-section-large .woocommerce-product-gallery__image {
    margin: 0 0 0.5rem 0 !important;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    width: 100% !important;
    max-width: 100% !important;
}

.product-images-section-large .woocommerce-product-gallery__image img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    border-radius: 8px;
    min-height: 500px;
    object-fit: cover;
    display: block !important;
}

/* Main product image (first image) should be even larger */
.product-images-section-large .woocommerce-product-gallery__image:first-child img {
    min-height: 600px !important;
}

/* Product Title and Brand Above Images */
.product-title-above-images {
    padding: 0 0 1rem 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.product-title-above-images .product-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #232f3e;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.product-title-above-images .product-brand-info {
    margin: 0;
}

.product-title-above-images .brand-label {
    color: #565959;
    font-size: 0.9rem;
    font-weight: 400;
}

.product-title-above-images .brand-link {
    color: #007185;
    text-decoration: none;
    font-size: 0.9rem;
}

.product-title-above-images .brand-link:hover {
    color: #c7511f;
    text-decoration: underline;
}

/* Fix image enlarge icon position */
.woocommerce-product-gallery__trigger {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    z-index: 99 !important;
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    padding: 8px !important;
    color: #232f3e !important;
    font-size: 16px !important;
    width: auto !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.woocommerce-product-gallery__trigger:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #007185 !important;
}

.product-basic-info-below-images {
    padding: 1rem 0;
}

/* Override any WooCommerce default gallery styles */
.woocommerce div.product div.images {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery {
    width: 100% !important;
    max-width: 100% !important;
}

.woocommerce div.product div.images img {
    width: 100% !important;
    max-width: 100% !important;
}

/* Product Description Below Images */
.product-description-below-images {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 1rem;
}

.product-description-below-images h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #232f3e;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.product-description-below-images .description-content {
    line-height: 1.6;
    color: #495057;
}

.product-description-below-images .short-description {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    font-style: italic;
    color: #6c757d;
}

/* Product Information Below Description */
.product-information-below-description {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 1rem;
}

.product-information-below-description h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #232f3e;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.product-information-below-description .spec-table table {
    width: 100%;
    border-collapse: collapse;
}

.product-information-below-description .spec-table tr {
    border-bottom: 1px solid #e9ecef;
}

.product-information-below-description .spec-table tr:last-child {
    border-bottom: none;
}

.product-information-below-description .spec-label {
    padding: 0.75rem 0;
    font-weight: 600;
    color: #232f3e;
    width: 35%;
    vertical-align: top;
}

.product-information-below-description .spec-value {
    padding: 0.75rem 0;
    color: #495057;
    vertical-align: top;
}

.product-title {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.3;
    color: #232f3e;
    margin: 0 0 0.5rem 0;
}

.product-brand-info {
    margin-bottom: 0.75rem;
}

.brand-label {
    color: #6c757d;
    font-size: 0.875rem;
}

.brand-link {
    color: #007185;
    text-decoration: none;
    font-weight: 500;
}

.brand-link:hover {
    text-decoration: underline;
}

/* Rating Section */
.product-rating-section {
    margin-bottom: 1rem;
}

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

.star-rating-container {
    display: flex;
    gap: 0.125rem;
}

.star-rating-container .fas,
.star-rating-container .far {
    color: #ffa500;
    font-size: 0.875rem;
}

.rating-text {
    font-size: 0.875rem;
    color: #007185;
    font-weight: 500;
}

.rating-count {
    color: #007185;
    font-size: 0.875rem;
}

.rating-count:hover {
    text-decoration: underline;
    cursor: pointer;
}

/* Amazon's Choice Badge */
.amazon-choice-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: #ff9900;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.amazon-choice-badge i {
    font-size: 0.75rem;
}

/* Divider */
.product-divider {
    border: none;
    border-top: 1px solid #e9ecef;
    margin: 1rem 0;
}

/* Price Section */
.product-price-section {
    margin-bottom: 1rem;
}

.price-container {
    margin-bottom: 0.5rem;
}

.price-container .woocommerce-Price-amount {
    font-size: 1.75rem;
    font-weight: 400;
    color: #232f3e;
}

.price-container .woocommerce-Price-currencySymbol {
    font-size: 1.25rem;
    vertical-align: top;
}

.price-container del .woocommerce-Price-amount {
    font-size: 1rem;
    color: #6c757d;
    text-decoration: line-through;
}

.savings-info {
    margin-bottom: 0.25rem;
}

.you-save {
    color: #b12704;
    font-size: 0.875rem;
    font-weight: 600;
}

.tax-info {
    color: #6c757d;
    font-size: 0.75rem;
}

/* Prime Benefits */
.prime-benefits {
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.prime-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

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

.prime-item i {
    color: #ff9900;
    font-size: 1.125rem;
    width: 1.25rem;
    flex-shrink: 0;
}

.prime-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.prime-text strong {
    color: #232f3e;
    font-size: 0.875rem;
}

.prime-text span {
    color: #6c757d;
    font-size: 0.75rem;
}

/* Stock Status */
.stock-availability {
    margin: 1rem 0;
}

.in-stock {
    color: #007600;
    font-weight: 600;
    font-size: 0.875rem;
}

.low-stock {
    color: #b12704;
    font-weight: 600;
    font-size: 0.875rem;
}

.out-of-stock {
    color: #b12704;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Add to Cart Section */
.add-to-cart-section {
    margin: 1.5rem 0;
}

.add-to-cart-section .cart {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.add-to-cart-section .quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.add-to-cart-section .qty {
    width: 60px;
    padding: 0.5rem;
    border: 1px solid #d5d9dd;
    border-radius: 4px;
    text-align: center;
}

.add-to-cart-section .single_add_to_cart_button {
    background: #ff9900;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.add-to-cart-section .single_add_to_cart_button:hover {
    background: #e88900;
}

/* Security Info */
.security-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    color: #6c757d;
}

.security-item i {
    color: #007185;
}

/* Purchase Options Sidebar */
.purchase-options-sidebar {
    background: white;
    border: 1px solid #d5d9dd;
    border-radius: 8px;
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 1rem;
}

/* Enhanced Sidebar Styles */
.purchase-options-sidebar.enhanced .buy-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.purchase-options-sidebar.enhanced .savings-info {
    margin-bottom: 0.5rem;
}

.purchase-options-sidebar.enhanced .you-save {
    color: #b12704;
    font-size: 0.875rem;
    font-weight: 600;
}

.purchase-options-sidebar.enhanced .tax-info {
    color: #6c757d;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.purchase-options-sidebar.enhanced .sidebar-stock {
    margin-bottom: 1rem;
}

.purchase-options-sidebar.enhanced .low-stock {
    color: #b12704;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Extended Sidebar Styles */
.extended-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 1rem;
    height: fit-content;
    width: 100%;
    max-width: 320px;
}

/* Inline Product Information Styles */
.product-description-inline,
.product-specifications-inline {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.product-description-inline h3,
.product-specifications-inline h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #232f3e;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.product-description-inline .description-content {
    line-height: 1.6;
    color: #495057;
}

.product-specifications-inline .spec-table table {
    width: 100%;
    border-collapse: collapse;
}

.product-specifications-inline .spec-table tr {
    border-bottom: 1px solid #e9ecef;
}

.product-specifications-inline .spec-label {
    padding: 0.75rem 0;
    font-weight: 600;
    color: #232f3e;
    width: 30%;
    vertical-align: top;
}

.product-specifications-inline .spec-value {
    padding: 0.75rem 0;
    color: #495057;
}

/* Enhanced Image Area */
.product-images-area {
    margin-bottom: 1.5rem;
}

.product-images-area .woocommerce-product-gallery__image {
    margin-bottom: 0.5rem;
}

.product-images-area .woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
}

.buy-box-price {
    margin-bottom: 1rem;
}

.buy-box-price .woocommerce-Price-amount {
    font-size: 1.5rem;
    font-weight: 400;
    color: #232f3e;
}

.delivery-info {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.delivery-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.delivery-item i {
    color: #ff9900;
    font-size: 1.125rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.delivery-item div {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.delivery-item strong {
    color: #232f3e;
    font-size: 0.875rem;
}

.delivery-item span {
    color: #6c757d;
    font-size: 0.75rem;
}

.delivery-item small {
    color: #6c757d;
    font-size: 0.6875rem;
}

.location-delivery {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #007185;
    cursor: pointer;
}

.location-delivery:hover {
    text-decoration: underline;
}

.location-delivery i {
    color: #ff9900;
}

.sidebar-stock {
    margin-bottom: 1rem;
}

.sidebar-stock .in-stock {
    color: #007600;
    font-weight: 600;
    font-size: 1rem;
}

.sidebar-stock .out-of-stock {
    color: #b12704;
    font-weight: 600;
    font-size: 1rem;
}

/* Quick Add to Cart */
.quick-add-to-cart {
    margin-bottom: 1.5rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.quantity-selector label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #232f3e;
}

.quantity-selector select {
    padding: 0.5rem;
    border: 1px solid #d5d9dd;
    border-radius: 4px;
    background: white;
    font-size: 0.875rem;
}

.quick-add-to-cart .single_add_to_cart_button {
    width: 100%;
    background: #ff9900;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.quick-add-to-cart .single_add_to_cart_button:hover {
    background: #e88900;
}

.buy-now-button {
    width: 100%;
    background: #ffa41c;
    color: #232f3e;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.buy-now-button:hover {
    background: #ff8f00;
}

/* Additional Options */
.additional-options {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #007185;
    font-size: 0.875rem;
    cursor: pointer;
}

.option-item:hover {
    text-decoration: underline;
}

.option-item i {
    width: 1rem;
    text-align: center;
}

/* Consolidated Layout Styles */
.product-info-section.merged-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.delivery-info-consolidated {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.25rem;
    margin: 1rem 0;
}

.delivery-info-consolidated .delivery-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.delivery-info-consolidated .delivery-item:last-child {
    margin-bottom: 0;
}

.delivery-info-consolidated .delivery-item i {
    color: #ff9900;
    font-size: 1.125rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.delivery-info-consolidated .delivery-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.delivery-info-consolidated strong {
    color: #232f3e;
    font-size: 0.875rem;
}

.delivery-info-consolidated span {
    color: #6c757d;
    font-size: 0.875rem;
}

.delivery-info-consolidated small {
    color: #6c757d;
    font-size: 0.75rem;
}

.purchase-section-consolidated {
    background: white;
    border: 1px solid #d5d9dd;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.purchase-section-consolidated .quantity-selector {
    margin-bottom: 1rem;
}

.purchase-section-consolidated .quantity-selector label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

.purchase-section-consolidated .cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.purchase-section-consolidated .single_add_to_cart_button,
.purchase-section-consolidated .buy-now-button {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.purchase-section-consolidated .single_add_to_cart_button {
    background: #ff9900;
    color: white;
}

.purchase-section-consolidated .single_add_to_cart_button:hover {
    background: #e88500;
}

.purchase-section-consolidated .buy-now-button {
    background: #ffa500;
    color: white;
}

.purchase-section-consolidated .buy-now-button:hover {
    background: #e69500;
}

.security-and-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.security-and-options .security-info {
    flex: 1;
    min-width: 200px;
}

.security-and-options .additional-options {
    flex: 1;
    min-width: 200px;
    border-top: none;
    padding-top: 0;
}

/* Product Details Section */
.product-details-section {
    background: white;
    padding: 2rem 0;
    margin-top: 1rem;
}

.product-content-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.product-main-content {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
}

.product-description h2,
.product-specifications h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #232f3e;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.description-content {
    line-height: 1.6;
    color: #495057;
    margin-bottom: 2rem;
}

.spec-table table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr {
    border-bottom: 1px solid #f8f9fa;
}

.spec-table tr:last-child {
    border-bottom: none;
}

.spec-label {
    padding: 0.75rem 0;
    font-weight: 600;
    color: #6c757d;
    width: 30%;
    vertical-align: top;
}

.spec-value {
    padding: 0.75rem 0;
    color: #495057;
    vertical-align: top;
}

/* Product Sidebar Info */
.product-sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
}

.info-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #232f3e;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f8f9fa;
}

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

.info-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #495057;
}

.info-list li:last-child {
    margin-bottom: 0;
}

.info-list li i {
    color: #28a745;
    font-size: 0.75rem;
    width: 1rem;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #007185;
    font-size: 0.875rem;
}

.contact-item i {
    color: #ff9900;
    width: 1rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-extended-layout {
        grid-template-columns: 2fr 300px;
        gap: 1rem;
        max-width: 1200px;
    }

    .product-images-section-large .woocommerce-product-gallery__image img {
        min-height: 500px;
    }

    .product-images-section-large .woocommerce-product-gallery__image:first-child img {
        min-height: 600px;
    }
}

@media (max-width: 992px) {
    .product-extended-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .extended-sidebar {
        order: -1;
        position: static;
    }

    .purchase-options-sidebar {
        margin-bottom: 1rem;
    }

    .product-content-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-images-section-large .woocommerce-product-gallery__image img {
        min-height: 350px;
    }

    .product-images-section-large .woocommerce-product-gallery__image:first-child img {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .product-images-section-large .woocommerce-product-gallery__image img {
        min-height: 300px;
    }

    .product-images-section-large .woocommerce-product-gallery__image:first-child img {
        min-height: 350px;
    }

    .product-description-below-images,
    .product-information-below-description {
        padding: 1rem;
        margin-top: 0.75rem;
    }

    .product-basic-info-below-images {
        padding: 0.75rem 0;
    }
}

@media (max-width: 768px) {
    .product-main-section {
        padding: 1rem 0;
    }

    .product-layout {
        padding: 0 0.5rem;
        gap: 1rem;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .price-container .woocommerce-Price-amount {
        font-size: 1.5rem;
    }

    .buy-box-price .woocommerce-Price-amount {
        font-size: 1.25rem;
    }

    .product-content-layout {
        padding: 0 0.5rem;
    }

    .product-main-content {
        padding: 1rem;
    }

    .info-card {
        padding: 1rem;
    }
}

/* ================================================
   MODERN CART PAGE STYLES - 2024 PROFESSIONAL DESIGN
   ================================================ */

/* Main Cart Container */
.modern-cart-page {
    background: #ffffff;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Cart Progress Indicator */
.cart-progress {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 0;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
}

.step.active {
    color: #007bff;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    font-size: 0.75rem;
    font-weight: 600;
}

.step.active .step-number {
    background: #007bff;
    color: white;
}

.step-arrow {
    color: #e9ecef;
    font-size: 1.25rem;
    font-weight: 300;
}

/* Empty Cart State */
.empty-cart-container {
    padding: 4rem 0;
    background: #ffffff;
}

.empty-cart-content {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
}

.empty-cart-icon {
    margin-bottom: 1.5rem;
    color: #d1d5db;
}

.empty-cart-content h1 {
    font-size: 1.75rem;
    font-weight: 400;
    color: #374151;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.empty-cart-content p {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.continue-shopping-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    border: 2px solid #007bff;
}

.continue-shopping-btn:hover {
    background: #0056b3;
    border-color: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    color: white;
    text-decoration: none;
}

/* Cart Content */
.cart-content {
    padding: 2rem 0;
    background: #ffffff;
}

.cart-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Cart Items Section */
.cart-items-section {
    min-width: 0;
    overflow: hidden;
}

/* Cart Header */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.cart-header h1 {
    font-size: 1.75rem;
    font-weight: 400;
    color: #374151;
    margin: 0;
}

.item-count {
    color: #6b7280;
    font-size: 0.9375rem;
    font-weight: 500;
}

/* Free Shipping Progress */
.shipping-progress {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.shipping-progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.shipping-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: 0.875rem;
    color: #374151;
}

.shipping-progress.free .shipping-message {
    color: #28a745;
    font-weight: 500;
}

.shipping-progress svg {
    color: #28a745;
    flex-shrink: 0;
}

/* Cart Items */
.cart-items {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

/* Cart Items Header */
.cart-items-header {
    display: grid;
    grid-template-columns: 90px 1fr 120px 90px 100px;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    font-weight: 600;
    font-size: 0.875rem;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-width: 0;
}

.cart-items-header > div {
    text-align: center;
}

.cart-items-header .header-info {
    text-align: left;
}

.cart-item-row {
    display: grid;
    grid-template-columns: 90px 1fr 120px 90px 100px;
    gap: 0.75rem;
    padding: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
    align-items: center;
    min-width: 0;
}

.cart-item-row:hover {
    background: #f9fafb;
}

.cart-item-row:last-child {
    border-bottom: none;
}

/* Product Image */
.item-image {
    display: flex;
    align-items: flex-start;
}

.item-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

/* Product Info Section */
.item-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-self: start;
    min-width: 0;
    overflow: hidden;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-name a {
    color: #007bff;
    text-decoration: none;
}

.product-name a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.product-meta {
    color: #6b7280;
    font-size: 0.875rem;
}

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

.stock-status .in-stock {
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.stock-status .out-of-stock {
    color: #ef4444;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.item-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.action-link {
    background: none;
    border: none;
    color: #007bff;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
}

.action-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Quantity Section */
.item-quantity {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
}

.quantity-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin: 0;
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-controls .quantity {
    width: 100%;
    max-width: 80px;
}

.quantity-controls input[type="number"] {
    width: 60px;
    padding: 0.4rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.875rem;
    text-align: center;
}

/* Price Section */
.item-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
    align-items: center;
}

.price-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
}

.unit-price {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Total Section */
.item-total {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
    align-items: center;
}

.total-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #dc2626;
}

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

.quantity-wrapper label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #374151;
}

.quantity-wrapper input {
    width: 60px;
    padding: 0.375rem 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    text-align: center;
    font-size: 0.875rem;
    background: #ffffff;
}

.quantity-wrapper input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.remove-item,
.save-later {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    background: none;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    color: #6b7280;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.remove-item:hover {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #dc2626;
}

.save-later:hover {
    background: #f0f9ff;
    border-color: #7dd3fc;
    color: #0284c7;
}

/* Price Section */
.item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    text-align: right;
    min-width: 120px;
}

.unit-price {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.item-total {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
}

/* Cart Actions */
.cart-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-top: 1px solid #e9ecef;
    flex-wrap: wrap;
}

.continue-shopping {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #007bff;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.5rem 0;
}

.continue-shopping:hover {
    color: #0056b3;
    text-decoration: none;
}

.update-cart {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.update-cart:hover {
    background: #5a6268;
}

/* Coupon Section */
.coupon-section {
    flex: 1;
    max-width: 300px;
}

.coupon-toggle {
    border: none;
    background: none;
    cursor: pointer;
}

.coupon-toggle summary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #007bff;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 0;
    list-style: none;
}

.coupon-toggle summary::-webkit-details-marker {
    display: none;
}

.coupon-toggle[open] summary {
    margin-bottom: 0.75rem;
}

.coupon-form {
    display: flex;
    gap: 0.5rem;
}

.coupon-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.875rem;
    background: #ffffff;
}

.coupon-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.apply-coupon {
    padding: 0.75rem 1rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.apply-coupon:hover {
    background: #0056b3;
}

/* Order Summary */
.order-summary {
    position: sticky;
    top: 1rem;
    height: fit-content;
}

.summary-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.summary-card h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin: 0;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.cart-collaterals {
    padding: 1.5rem;
}

/* Override WooCommerce cart totals */
.cart-collaterals .cart_totals {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
}

.cart-collaterals .cart_totals h2 {
    display: none;
}

.cart-collaterals .cart_totals table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.cart-collaterals .cart_totals th,
.cart-collaterals .cart_totals td {
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.9375rem;
}

.cart-collaterals .cart_totals th {
    font-weight: 500;
    color: #6b7280;
    text-align: left;
}

.cart-collaterals .cart_totals td {
    font-weight: 600;
    color: #374151;
    text-align: right;
}

.cart-collaterals .cart_totals .order-total th,
.cart-collaterals .cart_totals .order-total td {
    font-size: 1.125rem;
    font-weight: 700;
    border-bottom: none;
    padding-top: 1rem;
    color: #374151;
}

.cart-collaterals .wc-proceed-to-checkout {
    margin: 1.5rem 0 0 0;
}

.cart-collaterals .checkout-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #28a745;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.cart-collaterals .checkout-button:hover {
    background: #218838;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Trust Badges */
.trust-badges {
    padding: 1.5rem;
    background: #f9fafb;
    border-top: 1px solid #f3f4f6;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #6b7280;
    font-size: 0.8125rem;
    font-weight: 500;
}

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

.trust-item svg {
    color: #28a745;
    flex-shrink: 0;
}

/* Payment Methods */
.payment-methods {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    background: #f9fafb;
}

.payment-methods > span {
    display: block;
    font-size: 0.8125rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.payment-icon {
    padding: 0.375rem 0.75rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .order-summary {
        order: -1;
        position: static;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 0.75rem;
    }

    .item-price {
        grid-column: 1 / -1;
        align-items: flex-start;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #f3f4f6;
    }

    .item-actions {
        grid-column: 1 / -1;
        justify-content: flex-start;
        margin-top: 0.75rem;
    }
}

/* Medium screens - tablets and small desktops */
@media (max-width: 1024px) {
    .cart-layout {
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .cart-items-header {
        grid-template-columns: 80px 1fr 100px 80px 90px;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .cart-item-row {
        grid-template-columns: 80px 1fr 100px 80px 90px;
        gap: 0.5rem;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .cart-content {
        padding: 1rem 0;
    }

    .cart-layout {
        padding: 0 0.5rem;
    }

    .cart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .cart-items-header {
        display: none;
    }

    .cart-item-row {
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto auto;
        padding: 1rem;
        gap: 1rem;
    }

    .item-quantity,
    .item-price,
    .item-total {
        grid-column: 1 / -1;
        text-align: left;
        margin-top: 0.5rem;
    }

    .quantity-label,
    .price-label {
        display: inline;
        margin-right: 0.5rem;
    }

    .item-actions {
        margin-top: 1rem;
    }

    .cart-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem;
    }

    .coupon-section {
        max-width: none;
    }

    .coupon-form {
        flex-direction: column;
    }

    .apply-coupon {
        align-self: flex-start;
    }

    .summary-card h2 {
        padding: 1rem;
    }

    .cart-collaterals {
        padding: 1rem;
    }

    .trust-badges {
        padding: 1rem;
    }

    .payment-methods {
        padding: 1rem;
    }

    .progress-steps {
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .step-label {
        display: none;
    }
}

@media (max-width: 480px) {
    .empty-cart-content {
        padding: 1rem;
    }

    .empty-cart-content h1 {
        font-size: 1.5rem;
    }

    .continue-shopping-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .cart-item {
        padding: 0.75rem;
    }

    .item-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* ===========================
   CHECKOUT PAGE STYLES
   =========================== */

/* Modern Checkout Page */
.modern-checkout-page {
    background: #f8f9fa;
    min-height: 100vh;
    padding-bottom: 2rem;
}

/* Checkout Content */
.checkout-content {
    padding: 2rem 0;
}

.checkout-layout {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Main Checkout Form */
.checkout-main {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Checkout Sections */
.checkout-section {
    border-bottom: 1px solid #f3f4f6;
    padding: 2rem;
}

.checkout-section:last-child {
    border-bottom: none;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.section-header h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
}

.login-link {
    font-size: 0.875rem;
    color: #6b7280;
}

.login-link a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Order Total Preview in Header */
.order-total-preview {
    font-size: 1.125rem;
    font-weight: 700;
    color: #dc2626;
    background: #f3f4f6;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

/* Order Summary Section */
.order-summary-section .cart-review {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.order-summary-section .cart-review-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e9ecef;
}

.order-summary-section .order-totals {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    border-top: 1px solid #e9ecef;
}

/* Form Fields */
.customer-info-fields .col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.woocommerce-checkout .form-row {
    margin-bottom: 1.5rem;
}

.woocommerce-checkout .form-row label {
    font-weight: 500;
    color: #374151;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: block;
}

.woocommerce-checkout .form-row input[type="text"],
.woocommerce-checkout .form-row input[type="email"],
.woocommerce-checkout .form-row input[type="tel"],
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
}

.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Payment Methods Styling */
.woocommerce-checkout #payment {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0;
    border: 1px solid #e9ecef;
}

.woocommerce-checkout #payment ul.payment_methods {
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.woocommerce-checkout #payment ul.payment_methods li {
    margin: 0;
    border-bottom: 1px solid #e9ecef;
    background: #ffffff;
}

.woocommerce-checkout #payment ul.payment_methods li:last-child {
    border-bottom: none;
}

.woocommerce-checkout #payment ul.payment_methods li label {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
    color: #374151;
    margin: 0;
    transition: background-color 0.2s ease;
    border: none;
    background: none;
}

.woocommerce-checkout #payment ul.payment_methods li:hover label {
    background: #f8f9fa;
}

.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
    margin: 0 0.75rem 0 0;
    width: 18px;
    height: 18px;
    accent-color: #007bff;
}

.woocommerce-checkout #payment ul.payment_methods li label img {
    margin-left: auto;
    max-height: 24px;
    width: auto;
}

.woocommerce-checkout #payment div.payment_box {
    background: #f8f9fa;
    border: none;
    border-top: 1px solid #e9ecef;
    padding: 1.5rem;
    margin: 0;
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

.woocommerce-checkout #payment div.payment_box::before {
    display: none;
}

.woocommerce-checkout #payment div.payment_box p {
    margin: 0 0 1rem 0;
}

.woocommerce-checkout #payment div.payment_box p:last-child {
    margin-bottom: 0;
}

/* Payment Method Icons */
.payment-method-icons {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
}

.payment-method-icons img {
    height: 20px;
    width: auto;
    opacity: 0.7;
}

/* Place Order Button */
#place_order {
    width: 100%;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1.5rem;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
}

#place_order:hover {
    background: #218838;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

#place_order:active {
    transform: translateY(0);
}

/* Order Review Section */
.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    text-align: left;
}

.woocommerce-checkout-review-order-table .cart_item td {
    border-bottom: 1px solid #f3f4f6;
}

.woocommerce-checkout-review-order-table .product-name {
    font-weight: 500;
    color: #374151;
}

.woocommerce-checkout-review-order-table .product-total {
    text-align: right;
    font-weight: 600;
    color: #1a1a1a;
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
    border-top: 2px solid #e9ecef;
    border-bottom: none;
    padding-top: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: #1a1a1a;
}

/* Terms and Conditions */
.woocommerce-terms-and-conditions-wrapper {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.woocommerce-terms-and-conditions-wrapper .woocommerce-terms-and-conditions {
    max-height: 200px;
    overflow-y: auto;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

.woocommerce-checkout .form-row.place-order {
    margin-bottom: 0;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.5;
}

.woocommerce-checkout input[type="checkbox"] {
    margin-right: 0.5rem;
    width: 16px;
    height: 16px;
    accent-color: #007bff;
}

/* Security Badges in Payment Section */
.payment-methods .security-badges {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.payment-methods .badge-item {
    margin-bottom: 0;
}

/* Cart Review */
.cart-review {
    margin-bottom: 1.5rem;
}

.cart-review-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.cart-review-item:last-child {
    border-bottom: none;
}

.cart-review-item .item-image {
    position: relative;
    flex-shrink: 0;
}

.cart-review-item .item-image img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.cart-review-item .item-quantity {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 600;
}

.cart-review-item .item-details {
    flex: 1;
    min-width: 0;
}

.cart-review-item .item-details h4 {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #374151;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-review-item .item-price {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.8125rem;
}

/* Order Totals */
.order-totals {
    border-top: 2px solid #e9ecef;
    padding-top: 1rem;
    margin-bottom: 1.5rem;
}

.totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.8125rem;
}

.totals-row.total {
    border-top: 1px solid #e9ecef;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a1a;
}

.totals-row.subtotal,
.totals-row.shipping,
.totals-row.tax {
    color: #6b7280;
}

/* Security Badges */
.security-badges {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

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

.badge-item svg {
    color: #28a745;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-layout {
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .customer-info-fields .col2-set {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .checkout-section {
        padding: 1.5rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .checkout-content {
        padding: 1rem 0;
    }

    .order-summary-section .cart-review {
        grid-template-columns: 1fr;
    }

    .payment-methods .security-badges {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .woocommerce-checkout #payment ul.payment_methods li label {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .woocommerce-checkout #payment ul.payment_methods li label img {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    #place_order {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .woocommerce-checkout #payment div.payment_box {
        padding: 1rem;
    }
}
