/* ========== GLOBAL STYLES ========== */
:root {
    --primary-green: #00b400;
    --primary-dark: #008000;
    --primary-light: #00e176;
    --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--primary-light));
    --gradient-secondary: linear-gradient(135deg, #f8fff8 0%, #ffffff 100%);
    --text-dark: #222;
    --text-light: #666;
    --text-white: #fff;
    --shadow-light: 0 10px 30px rgba(0, 180, 0, 0.1);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 15px 40px rgba(0, 180, 0, 0.2);
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: var(--text-dark);
    background: var(--gradient-secondary);
    padding-top: 135px; /* header height + banner height */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== URGENCY BANNER ========== */
.urgency-banner {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-weight: 550;
    font-size: 0.95em;
    position: fixed;
    top: 60px; /* Position below header - adjust based on your header height */
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(255, 107, 107, 0.3);
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
}

.urgency-banner.show {
    transform: translateY(0);
}

.urgency-banner.hide {
    transform: translateY(-250%);
}

.urgency-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.countdown {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 12px;
    border-radius: 20px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Adjust body padding to account for fixed banner */


/* ========== PRODUCTS CUSTOMIZATION PAGE ========== */
.products-customization {
    padding: 100px 0;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-header h1 {
    font-size: 3.5em;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.3em;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 25px;
}

.social-proof {
    margin-top: 20px;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffc107;
    font-weight: 600;
}

.rating span {
    color: var(--text-light);
    margin-left: 8px;
}

/* Product Tabs */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 30px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: var(--border-radius);
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    min-width: 180px;
    justify-content: center;
}

.tab-btn.active {
    border-color: var(--primary-green);
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-heavy);
    transform: translateY(-2px);
}

.tab-btn:hover:not(.active) {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.tab-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff6b6b;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7em;
    font-weight: 700;
}

.bundle-badge {
    background: var(--primary-green);
}

/* Customization Sections */
.customization-section {
    display: none;
}

.customization-section.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.customization-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Preview Section */
.preview-section {
    position: sticky;
    top: 100px;
}

.preview-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-medium);
    border: 2px solid rgba(0, 180, 0, 0.1);
    position: relative;
}

.urgency-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 1;
}

.preview-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    background: #f8f9fa;
    position: relative;
}

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

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.preview-image:hover .preview-overlay {
    opacity: 1;
}

.zoom-btn {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-green);
}

.zoom-btn:hover {
    transform: scale(1.1);
}

.preview-details h3 {
    font-size: 1.8em;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 700;
}

.specs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.spec-item span:first-child {
    color: var(--text-light);
    font-weight: 500;
}

.spec-item span:last-child {
    color: var(--text-dark);
    font-weight: 600;
}

.eco-rating {
    color: var(--primary-green);
}

.price-section {
    text-align: center;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.price {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.price-note {
    color: var(--text-light);
    font-size: 0.9em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.trust-indicators {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 15px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    background: rgba(0, 180, 0, 0.05);
    border-radius: 10px;
    color: var(--primary-green);
    font-size: 0.9em;
    font-weight: 600;
    flex: 1;
    justify-content: center;
}

/* Options Section */
.options-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.option-group h4 {
    font-size: 1.4em;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-counter {
    font-size: 0.8em;
    color: var(--text-light);
    font-weight: 400;
}

.option-counter-bill {
    font-size: 0.8em;
    color: var(--text-light);
    font-weight: 400;
}

/* Design Options */
.design-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.design-option {
    position: relative;
    display: flex;
    gap: 20px;
    padding: 25px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
    background: white;
}

.design-option:hover {
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.design-option.active {
    border-color: var(--primary-green);
    background: rgba(0, 180, 0, 0.05);
}

.design-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7em;
    font-weight: 700;
}

.design-preview {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
}

.design-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.design-info h5 {
    font-size: 1.3em;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.design-info p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 0.95em;
    line-height: 1.4;
}

.design-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.design-features span {
    background: rgba(0, 180, 0, 0.1);
    color: var(--primary-green);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 500;
}

/* Color Options */
.color-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.color-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    background: white;
}

.color-option:hover {
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.color-option.active {
    border-color: var(--primary-green);
    background: rgba(0, 180, 0, 0.05);
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    flex-shrink: 0;
}

.color-option span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1em;
}

.color-popular {
    position: absolute;
    top: -6px;
    right: 10px;
    background: var(--primary-green);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7em;
    font-weight: 600;
}

/* Size Options */
.size-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.size-option {
    display: flex;
    gap: 20px;
    padding: 25px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
    background: white;
}

.size-option:hover {
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.size-option.active {
    border-color: var(--primary-green);
    background: rgba(0, 180, 0, 0.05);
}

.size-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5em;
    flex-shrink: 0;
}

.size-info {
    flex: 1;
}

.size-info h5 {
    font-size: 1.3em;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.size-info p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 0.95em;
}

.size-specs {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
    font-weight: 500;
}

.size-price {
    color: var(--primary-green);
    font-size: 1.4em;
    font-weight: 700;
}

/* Action Group */
.action-group {
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.stock-indicator {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    padding: 12px 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Quick Order Buttons */
.quick-order-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.whatsapp-btn, .call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.call-btn {
    background: #007bff;
    color: white;
}

.call-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.whatsapp-btn.large, .call-btn.large {
    padding: 18px 25px;
    font-size: 1.1em;
}

/* Bundle Section */
.bundle-header {
    text-align: center;
    margin-bottom: 50px;
}

.bundle-header h2 {
    font-size: 2.5em;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.savings-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    margin-top: 15px;
}

.bundle-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.bundle-option {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-medium);
    border: 2px solid rgba(0, 180, 0, 0.1);
    position: relative;
    transition: var(--transition);
}

.bundle-option.featured {
    border-color: var(--primary-green);
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.bundle-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.bundle-option.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.bundle-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.7em;
    border: 2px solid white;
}

.bundle-content h3 {
    font-size: 1.8em;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-align: center;
}

.bundle-content > p {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 25px;
}

.bundle-items {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.bundle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.bundle-item img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.bundle-item span {
    font-size: 0.9em;
    color: var(--text-dark);
    font-weight: 500;
}

.bundle-pricing {
    text-align: center;
    margin-bottom: 25px;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.1em;
    margin-bottom: 5px;
}

.bundle-price {
    font-size: 2.2em;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.savings {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 1em;
}

/* Custom Order Section */
.custom-order-section {
    background: var(--gradient-secondary);
    padding: 80px 0;
    margin-top: 10px;
}

.custom-order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.custom-order-text h2 {
    font-size: 2.5em;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.custom-order-text p {
    font-size: 1.2em;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.custom-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1em;
    color: var(--text-dark);
    font-weight: 500;
}

.feature i {
    color: var(--primary-green);
    font-size: 1.2em;
}

.custom-order-contact {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.custom-order-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.custom-order-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.custom-order-image:hover img {
    transform: scale(1.05);
}

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

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

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .customization-layout {
        gap: 40px;
    }
    
    .custom-order-content {
        gap: 40px;
    }
    
    .bundle-options {
        grid-template-columns: 1fr;
    }
    
    .bundle-option.featured {
        transform: none;
    }
    
    .bundle-option.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .products-customization {
        padding: 40px 20px;
    }
    
    .page-header h1 {
        font-size: 2.5em;
    }
    
    .page-header p {
        font-size: 1.1em;
    }
    
    .product-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .customization-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .preview-section {
        position: static;
    }
    
    .preview-image img {
        height: 300px;
    }
    
    .design-option {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .design-preview {
        width: 100%;
        height: 150px;
    }
    
    .trust-indicators {
        flex-direction: column;
    }
    
    .custom-order-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .custom-order-text {
        text-align: center;
    }
    
    .custom-features {
        align-items: center;
    }
    
    .custom-order-contact {
        justify-content: center;
    }
    
    .urgency-banner .container {
        flex-direction: column;
        gap: 8px;
    }
    
    .quick-order-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2em;
    }
    
    .preview-card {
        padding: 25px 20px;
    }
    
    .preview-image img {
        height: 250px;
    }
    
    .preview-details h3 {
        font-size: 1.5em;
    }
    
    .price {
        font-size: 2em;
    }
    
    .design-option {
        padding: 20px;
    }
    
    .color-option {
        padding: 15px;
    }
    
    .add-to-cart-btn {
        padding: 18px;
        font-size: 1.1em;
    }
    
    .bundle-option {
        padding: 25px 20px;
    }
    
    .bundle-items {
        flex-direction: column;
        gap: 15px;
    }
    
    .custom-order-contact {
        flex-direction: column;
    }

    .bundle-badge { top: -15px;}
}

/* SMS Button Styles */
.sms-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    background: #9b59b6;
    color: white;
}

.sms-btn:hover {
    background: #8e44ad;
    transform: translateY(-2px);
}

.sms-btn.large {
    padding: 18px 25px;
    font-size: 1.1em;
}

.nav-link-gideon-products {
    color: rgb(0, 180, 0);
}