/*
Theme Name: Sneham Green
Description: A beautiful green theme for organic products website
Version: 1.0.0
Author: Sneham Green Team
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
    font-size: 16px;
    padding-top: 100px;
}

/* Header Styles */
.site-header {
    background: #ffffff;
    color: #2c3e50;
    padding: 2rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #e9ecef;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

.site-header.hidden {
    transform: translateY(-100%);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.site-title {
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.site-title:hover {
    color: #c8e6c9;
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.main-navigation a:hover {
    background-color: #f8f9fa;
    color: #007bff;
    transform: translateY(-2px);
}

/* Main Content */
.site-main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    color: #2c3e50;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 24px;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #495057;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #6c757d;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 400;
    margin: 0;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border-color: #e0e7ff;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    overflow: hidden;
    position: relative;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.product-title {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.product-description {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
    font-weight: 400;
}

.product-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #059669;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Homepage specific price styling - smaller font size */
.homepage-price {
    font-size: 1.8rem !important;
}

/* Single product page specific price styling - larger font size */
.single-page-price {
    font-size: 3rem !important;
    font-weight: 900 !important;
}

.product-price span {
    display: inline-block;
    margin-right: 5px;
}

.sale-badge {
    background: #e74c3c;
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
    margin-left: 10px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.sale-price {
    color: #e74c3c;
    font-weight: bold;
}

.buy-button {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 16px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    letter-spacing: 0.025em;
    margin-bottom: 0.75rem;
}

.buy-button::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;
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.buy-button:hover::before {
    left: 100%;
}

/* Buy Now Button */
.buy-now-button {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    letter-spacing: 0.025em;
    text-decoration: none;
    text-align: center;
    display: block;
    margin: 0;
}

.buy-now-button::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;
}

.buy-now-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.5);
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #c0392b, #a93226);
}

.buy-now-button:hover::before {
    left: 100%;
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 3rem 0;
    margin-top: 5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .site-main {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
    
    .site-header {
        padding: 1rem 0;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 15px;
    }
    
    .main-navigation ul {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .main-navigation a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-section {
        padding: 3rem 1rem;
        margin: 1rem 0;
        border-radius: 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .product-card {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .product-image {
        height: 180px;
        margin-bottom: 1rem;
    }
    
    .product-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .product-description {
        font-size: 0.85rem;
    }
    
    .product-price {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    /* Homepage price responsive */
    .homepage-price {
        font-size: 1.4rem !important;
    }
    
    /* Single product page price responsive */
    .single-page-price {
        font-size: 2.2rem !important;
    }
    
    .buy-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .site-main {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 70px;
    }
    
    .site-header {
        padding: 0.8rem 0;
    }
    
    .header-container {
        padding: 0 10px;
    }
    
    .main-navigation ul {
        gap: 0.5rem;
    }
    
    .main-navigation a {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .hero-section {
        padding: 2rem 0.8rem;
        margin: 0.5rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .product-card {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .product-image {
        height: 160px;
        margin-bottom: 0.8rem;
    }
    
    .product-title {
        font-size: 1.05rem;
        margin-bottom: 0.4rem;
    }
    
    .product-description {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .product-price {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    /* Homepage price mobile */
    .homepage-price {
        font-size: 1.2rem !important;
    }
    
    /* Single product page price mobile */
    .single-page-price {
        font-size: 1.8rem !important;
    }
    
    .buy-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .site-main {
        padding: 0 5px;
    }
}

/* WordPress Specific */
.wp-block-group {
    margin: 2rem 0;
}

.alignwide {
    max-width: 1200px;
    margin: 0 auto;
}

.alignfull {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* Checkout Modal Styles */
.checkout-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.checkout-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #e74c3c;
}

.checkout-modal-content h2 {
    color: #2e7d32;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.8rem;
}

.order-summary {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #28a745;
}

.order-summary h3 {
    color: #2e7d32;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.order-total {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
}

.order-total h3 {
    margin: 0;
    font-size: 1.4rem;
}

.submit-order-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.submit-order-btn:active {
    transform: translateY(0);
}

.product-buttons {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1rem;
}

.view-details-btn {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
    letter-spacing: 0.025em;
}

.view-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive Design for Buy Now Button */
@media (max-width: 768px) {
    .product-buttons {
        gap: 0;
        margin-top: 0.8rem;
    }
    
    .buy-now-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .product-buttons {
        gap: 0;
        margin-top: 0.6rem;
    }
    
    .buy-now-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 14px;
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .checkout-modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
        max-height: 85vh;
    }
    
    .checkout-modal-content h2 {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .submit-order-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .checkout-modal-content {
        margin: 5% auto;
        padding: 1rem;
        width: 98%;
    }
    
    .close-modal {
        right: 15px;
        top: 15px;
        font-size: 25px;
    }
}

/* Single Product Page Styles */
.single-product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px;
}

/* Checkout Form Section */
.checkout-form-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.checkout-form-section h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #28a745;
    padding-bottom: 0.5rem;
}

.checkout-form-section .form-group {
    margin-bottom: 1.5rem;
}

.checkout-form-section .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.checkout-form-section .form-group input,
.checkout-form-section .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.checkout-form-section .form-group input:focus,
.checkout-form-section .form-group textarea:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.checkout-form-section .order-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #28a745;
}

.checkout-form-section .order-summary h4 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
    font-size: 1.2rem;
    border: none;
    padding: 0;
}

.checkout-form-section .summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

.checkout-form-section .summary-item.total {
    border-top: 2px solid #28a745;
    border-bottom: none;
    margin-top: 1rem;
    padding-top: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #2c3e50;
}

.checkout-form-section .form-actions {
    text-align: center;
}

.checkout-form-section .submit-order-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.checkout-form-section .submit-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.checkout-form-section .submit-order-btn:active {
    transform: translateY(0);
}

.checkout-form-section .out-of-stock-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: not-allowed;
    min-width: 200px;
}

/* Professional Order Success Modal */
.order-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e9ecef;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.modal-header h2 {
    color: #28a745;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.modal-body {
    padding: 1.5rem 2rem;
}

.success-message {
    text-align: center;
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.order-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #28a745;
}

.order-number, .order-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.order-number:last-child, .order-status:last-child {
    margin-bottom: 0;
}

.order-details .label {
    font-weight: 600;
    color: #2c3e50;
}

.order-details .value {
    font-weight: 700;
    color: #28a745;
}

.status-processing {
    background: #d4edda;
    color: #155724;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.next-steps {
    background: #e3f2fd;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #2196f3;
}

.next-steps h4 {
    color: #1976d2;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.next-steps ul {
    margin: 0;
    padding-left: 1.2rem;
}

.next-steps li {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.modal-btn.primary {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.modal-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.modal-btn.secondary {
    background: #6c757d;
    color: white;
}

.modal-btn.secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .modal-header, .modal-body, .modal-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-btn {
        width: 100%;
    }
}

.breadcrumb {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #6c757d;
    font-weight: 500;
}

.product-details-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image {
    text-align: center;
    color: #6c757d;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px dashed #dee2e6;
    border-radius: 12px;
}

.product-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.image-gallery {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: #28a745;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.product-price-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #28a745;
}

/* Price container and related styles removed as requested */

.sale-badge {
    display: none !important;
}

/* Stock status styles removed as requested */

/* Cache Clear Button Styles removed */

/* Stock status styles removed as requested */

.product-description {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.product-description h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.description-content {
    line-height: 1.6;
    color: #495057;
}

/* Tabs styles removed as requested */

/* Checkout Form Styles */
.checkout-form-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 2rem;
    margin: 2rem 0;
}

.order-success-message {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.order-success-message h3 {
    color: #155724;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.order-success-message p {
    color: #155724;
    margin: 0;
    font-size: 1rem;
}

.checkout-form-section h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #28a745;
    padding-bottom: 0.5rem;
}

.product-checkout-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #28a745;
    background: white;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    line-height: 1.5;
}

.order-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

.order-summary h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    font-weight: 700;
    font-size: 1.1rem;
    color: #28a745;
    border-top: 2px solid #28a745;
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.summary-item .price,
.summary-item .total-price {
    font-weight: 600;
    color: #28a745;
}

.form-actions {
    text-align: center;
    margin-top: 1rem;
}

.submit-order-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 250px;
}

.submit-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #20c997, #28a745);
}

.submit-order-btn:active {
    transform: translateY(0);
}

/* Responsive Design for Checkout Form */
@media (max-width: 768px) {
    .checkout-form-section {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .product-checkout-form {
        gap: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .submit-order-btn {
        width: 100%;
        min-width: auto;
        padding: 1rem 2rem;
    }
}

.product-specs {
    width: 100%;
    border-collapse: collapse;
}

.product-specs td {
    padding: 0.75rem;
    border-bottom: 1px solid #dee2e6;
}

.product-specs td:first-child {
    font-weight: 600;
    color: #2c3e50;
    width: 40%;
}

.order-section {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.buy-now-btn,
.add-to-cart-btn,
.out-of-stock-btn {
    flex: 0 0 auto;
    min-width: 250px;
    max-width: 300px;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buy-now-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.out-of-stock-btn {
    background: #6c757d;
    color: white;
    cursor: not-allowed;
}

/* Trust badges styles removed as requested */

/* WooCommerce Customization Styles */
.shop-header {
    text-align: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.shop-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.shop-header p {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 0;
}

.product-card-wrapper {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.product-card-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* WooCommerce Shop Page Styles */
.woocommerce .products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.woocommerce .product {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.woocommerce .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.woocommerce .product img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.woocommerce .product .woocommerce-loop-product__title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 1rem 0 0.5rem 0;
    padding: 0 1rem;
}

.woocommerce .product .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
    margin: 0.5rem 0 1rem 0;
    padding: 0 1rem;
}

.woocommerce .product .button {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin: 0 1rem 1rem 1rem;
    width: calc(100% - 2rem);
}

.woocommerce .product .button:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

/* WooCommerce Cart Page Styles */
.woocommerce-cart .cart-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.woocommerce-cart .cart-table th,
.woocommerce-cart .cart-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.woocommerce-cart .cart-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

/* WooCommerce Checkout Page Styles */
.woocommerce-checkout .checkout-form {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.woocommerce-checkout .form-row {
    margin-bottom: 1.5rem;
}

.woocommerce-checkout .form-row label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: block;
}

.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

/* WooCommerce Messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.woocommerce-error {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.woocommerce-info {
    background: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

.related-products {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

.related-products h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-product-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.related-product-image {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-product-card h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.related-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 1rem;
}

.view-product-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.view-product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Responsive Design for Single Product */
@media (max-width: 768px) {
    .product-details-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .main-image {
        height: 350px;
    }
    
    .regular-price,
    .sale-price {
        font-size: 2rem;
    }
    
    .order-section {
        flex-direction: column;
    }
    
    .buy-now-btn,
    .add-to-cart-btn {
        min-width: auto;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        min-width: 120px;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .single-product-container {
        padding: 1rem 10px;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .main-image {
        height: 300px;
    }
    
    .regular-price,
    .sale-price {
        font-size: 1.8rem;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* Related Products Styles */
.related-products {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.related-products h2 {
    text-align: center;
    color: #2e7d32;
    font-size: 2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #28a745;
    padding-bottom: 0.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.related-product-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.related-product-image {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.related-product-card h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.related-price {
    color: #28a745;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.view-product-btn {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.view-product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    color: white;
    text-decoration: none;
}

/* Logo Styles */
.custom-logo-link {
    display: inline-block;
    text-decoration: none;
}

.custom-logo {
    height: auto;
    width: auto;
    max-width: 200px;
    max-height: 60px;
    transition: all 0.3s ease;
    filter: brightness(1.0) contrast(1.1);
    display: block;
}

.custom-logo:hover {
    transform: scale(1.02);
    filter: brightness(1.05) contrast(1.2);
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-branding .site-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: #2c3e50;
}

.site-icon {
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .custom-logo {
        height: 60px;
        max-width: 250px;
    }
    
    .site-branding .site-title {
        font-size: 1.5rem;
    }
    
    .site-icon {
        font-size: 2rem;
    }
}
