/* ============================
   Story-Driven Product Detail Page
============================= */

/* Reset and Base Styles */
.product-hero,
.product-story {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================
   Hero Section with Interactive Image
============================= */
.product-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: auto;
    padding-top: 200px; /* Account for fixed header with extra clearance */
}

.product-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Interactive Product Image */
.product-image-showcase {
    position: relative;
    perspective: 1000px;
}

.product-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-image-wrapper:hover {
    transform: translateY(-10px) rotateY(5deg);
}

.main-product-image {
    width: 100%;
    height: auto;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: zoom-in;
}

.main-product-image:hover {
    transform: scale(1.05);
}

/* Interactive Hotspots */
.hotspot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: rgba(0, 122, 204, 0.9);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: breathe 2s ease-in-out infinite;
}

.hotspot:hover {
    transform: scale(1.2);
    background: #007acc;
}

.hotspot::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 10;
}

.hotspot:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.hotspot-pulse {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    animation: pulse 1.5s ease-in-out infinite;
}

/* Position hotspots */
.hotspot-1 { top: 30%; left: 25%; }
.hotspot-2 { top: 60%; right: 30%; }
.hotspot-3 { bottom: 25%; left: 40%; }

/* Hero Content */
.product-hero-content {
    color: #1a202c;
}

.product-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--brand-primary-color) 0%, var(--brand-secondary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.product-brief {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 600px; /* Limit width for better readability */
    padding: 1rem 0; /* Add vertical padding */
    margin-top: 1rem; /* Add top margin */
}

.product-brief ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-brief li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
}

.product-brief li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: linear-gradient(135deg, var(--brand-primary-color) 0%, var(--brand-secondary-color) 100%);
    font-weight: bold;
    font-size: 1.2rem;
}

.explore-btn {
    background: linear-gradient(135deg, var(--brand-primary-color) 0%, var(--brand-secondary-color) 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 122, 204, 0.25);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.explore-btn:hover {
    transform: translateY(-2px); /* Reduced from -3px */
    box-shadow: 0 8px 30px rgba(var(--brand-secondary-color-rgb), 0.35); /* Adjusted shadow */
}

/* ============================
   Story Sections
============================= */
.product-story {
    background: #ffffff;
}

.story-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.story-section:nth-child(even) {
    background: #f8fafc;
}

/* How It's Made Section */
.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-title {
    font-size: 3rem;
    font-weight: 700;
    color: linear-gradient(135deg, var(--brand-primary-color) 0%, var(--brand-secondary-color) 100%);
    margin-bottom: 1rem;
}

.story-subtitle {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 3rem;
}

.story-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
}

.step-number {
    background: linear-gradient(135deg, var(--brand-primary-color) 0%, var(--brand-secondary-color) 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #718096;
    line-height: 1.6;
}

/* Manufacturing Visual */
.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.manufacturing-showcase {
    position: relative;
    width: 300px;
    height: 300px;
}

.visual-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #007acc, #0056b3);
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.element-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #38b2ac, #2c7a7b);
    top: 50px;
    right: 30px;
    animation-delay: 2s;
}

.element-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ed8936, #c05621);
    bottom: 30px;
    left: 50px;
    animation-delay: 4s;
}

/* ============================
   Customer Reviews Section
============================= */
.reviews-container {
    text-align: center;
}

.reviews-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.reviews-subtitle {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 4rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007acc, #38b2ac);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.review-stars {
    margin-bottom: 1.5rem;
}

.star {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin: 0 2px;
    transition: color 0.3s ease;
}

.star.filled {
    color: #fbbf24;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-name {
    font-weight: 600;
    color: #2d3748;
}

.author-title {
    font-size: 0.9rem;
    color: #718096;
}

/* ============================
   Enhanced Enquiry Form
============================= */
.enquiry-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.enquiry-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.enquiry-subtitle {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 3rem;
}

.story-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.story-form label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-form input,
.story-form select,
.story-form textarea {
    padding: 1rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.story-form input:focus,
.story-form select:focus,
.story-form textarea:focus {
    border-color: linear-gradient(135deg, var(--brand-primary-color) 0%, var(--brand-secondary-color) 100%);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 122, 204, 0.1);
}

.story-submit-btn {
    background: linear-gradient(135deg, var(--brand-primary-color) 0%, var(--brand-secondary-color) 100%);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 2rem;
    width: 100%;
}

.story-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 122, 204, 0.4);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.story-submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Trust Badges */
.enquiry-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-weight: 600;
    color: #2d3748;
    border-left: 4px solid #007acc;
}

/* ============================
   Animations
============================= */
@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(120deg); }
    66% { transform: translateY(5px) rotate(240deg); }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.fadeInUp {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.slideInLeft {
    opacity: 1;
    transform: translateX(0);
}

.animate-on-scroll.slideInRight {
    opacity: 1;
    transform: translateX(0);
}

.animate-on-scroll:not(.fadeInUp):not(.slideInLeft):not(.slideInRight) {
    transform: translateY(30px);
}

.animate-on-scroll[data-animation="slideInLeft"]:not(.slideInLeft) {
    transform: translateX(-50px);
}

.animate-on-scroll[data-animation="slideInRight"]:not(.slideInRight) {
    transform: translateX(50px);
}

/* ============================
   Responsive Design
============================= */
@media (max-width: 1024px) {
    .product-hero-container,
    .story-container,
    .enquiry-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .product-title {
        font-size: 2.5rem;
    }
    
    .story-title,
    .reviews-title,
    .enquiry-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding-top: 100px; /* Reduced for better mobile experience */
        height: auto;
        min-height: 70vh; /* Reduced for better mobile flow */
        padding-bottom: 2rem;
    }
    
    .product-hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .product-image-showcase {
        order: 1; /* Show image first on mobile */
        margin-bottom: 1rem;
    }
    
    .product-hero-content {
        order: 2;
        text-align: center;
        padding: 0 0.5rem;
    }
    
    /* Improve product image sizing on mobile */
    .product-image-showcase img {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
        display: block;
    }
    
    /* Better mobile typography */
    .product-title {
        font-size: 1.8rem !important;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .story-section {
        padding: 4rem 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .story-title,
    .reviews-title,
    .enquiry-title {
        font-size: 2rem;
    }
    
    /* Mobile responsive styles for hero buttons */
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }
    
    .explore-btn,
    .enquiry-btn {
        width: 100%;
        text-align: center;
    }
}
.enquiry-form {
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
}

.enquiry-form h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: linear-gradient(135deg, var(--brand-primary-color) 0%, var(--brand-secondary-color) 100%);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.submit-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-detail-container {
        flex-direction: column;
        padding: 1rem;
    }

    .product-image-container,
    .product-info-container {
        width: 100%;
    }

    .product-title {
        font-size: 2rem;
    }

    .enquiry-form {
        padding: 1.5rem;
    }

    .product-detail {
        padding: 1rem;
    }
}

/* ============================
   Modal Image Zoom Styles
============================= */
.image-zoom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-zoom-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.image-zoom-modal-content {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalZoomIn 0.3s ease;
}

@keyframes modalZoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 60%;
    max-height: 60%;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.modal-close-btn {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.modal-close-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.modal-close-btn:focus {
    outline: 2px solid #007acc;
    outline-offset: 2px;
}

/* Prevent background scroll when modal is open */
body.modal-open {
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .image-zoom-modal-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .modal-close-btn {
        top: -30px;
        right: -30px;
        width: 35px;
        height: 35px;
    }
    
    .modal-image {
        border-radius: 4px;
    }
}

@media (max-width: 480px) {
    .product-hero {
        padding-top: 120px; /* Optimized for smaller screens */
        min-height: 70vh;
    }
    
    .modal-close-btn {
        top: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.7);
        color: white;
    }
    
    .modal-close-btn:hover {
        background: rgba(0, 0, 0, 0.9);
    }
}

/* ============================
   Product Detail Page Carousel Refinements
============================= */
/* Style short descriptions in carousel on product detail page */
.product-card .product-short-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: .5rem; /* Increased margin for better spacing */
    line-height: 1.4;
}

/* Hide full product descriptions in carousel (if any exist) */
.product-card .product-description {
    display: none;
}

/* Enhanced hover effects for product detail page carousel */
.product-card:hover .product-image {
    height: 90%;
    margin-bottom: 0;
    transform: scale(1.05);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* Keep product title visible on hover in product detail page */
.product-card:hover .product-short-description {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.product-card:hover .product-info h3 {
    transform: translateY(-10px);
    transition: transform 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Enquiry Button */
.enquiry-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 10px 20px; /* Same size as explore-btn */
    border: none;
    border-radius: 50px;
    font-size: 0.95rem; /* Same size as explore-btn */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.25);
}

.enquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.35);
}

/* ============================
   Product Features Section
============================= */
.product-features-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-content {
    padding-right: 2rem;
    max-width: 600px;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: linear-gradient(135deg, var(--brand-primary-color) 0%, var(--brand-secondary-color) 100%);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.features-subtitle {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.product-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border-left: 4px solid #28a745;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left-color: #20c997;
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #28a745;
    font-size: 1.2rem;
    margin-top: 2px;
}

.feature-text {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.features-cta {
    margin-top: 2rem;
}

.features-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--brand-primary-color) 0%, var(--brand-secondary-color) 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.25);
}

.features-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.35);
    color: white;
    text-decoration: none;
}

.features-btn i {
    font-size: 1.1rem;
}

/* Features Visual Section */
.features-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-width: 300px;
    flex-shrink: 0;
}

.quality-badges {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid;
    min-width: 200px;
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.badge i {
    font-size: 1.5rem;
}

.badge span {
    font-weight: 600;
    font-size: 1rem;
}

.iso-badge {
    border-left-color: #28a745;
}

.iso-badge i {
    color: #28a745;
}

.fda-badge {
    border-left-color: #007bff;
}

.fda-badge i {
    color: #007bff;
}

.eco-badge {
    border-left-color: #20c997;
}

.eco-badge i {
    color: #20c997;
}

/* TUX Revolution: Interactive Features & Enquiry Section */
.interactive-features-enquiry {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    min-height: 600px;
    position: relative;
}

.interactive-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.features-view, .enquiry-view {
    position: relative;
    width: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    visibility: visible;
}

.features-view {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.enquiry-view {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: flex-start;
}

.enquiry-content-wrapper {
    max-width: 600px;
}

.features-view.hidden, .enquiry-view.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    top: 0;
}

.enquire-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.25);
}

.enquire-trigger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.35);
}

/* Enquiry View Styles */
.enquiry-content {
    max-width: 800px;
    margin: 0 auto;
}

.enquiry-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    text-align: center;
}

.enquiry-subtitle {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.6;
}

.enquiry-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f7fafc;
}

.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-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.back-to-features {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #4a5568;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-to-features:hover {
    border-color: #cbd5e0;
    background: #f7fafc;
}

.submit-enquiry {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.submit-enquiry:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Responsive Design for Interactive Section */
@media (max-width: 768px) {
    .interactive-container {
        padding: 0 1rem;
    }
    
    .enquiry-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .enquiry-title {
        font-size: 2rem;
    }

    .features-view, .enquiry-view {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .features-content {
        padding-right: 0;
        max-width: none;
    }

    .features-title {
        font-size: 2rem;
    }

    .feature-item {
        text-align: left;
    }

    .quality-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .badge {
        min-width: auto;
        flex: 1;
        min-width: 150px;
    }
}

/* ============================
   TUX Revolution: Content Expansion Styles
============================= */
.product-full-description {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
    margin-top: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(10px);
}

.product-full-description.show {
    opacity: 1;
    transform: translateY(0);
}

.expand-description-btn {
    background: none !important;
    border: none !important;
    color: linear-gradient(135deg, var(--brand-primary-color) 0%, var(--brand-secondary-color) 100%) !important;
    text-decoration: underline !important;
    cursor: pointer !important;
    margin-top: 1rem !important;
    margin-bottom: 0.75rem !important;
    font-size: 0.9rem !important;
    padding: 0.5rem 0 !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    display: block;
}

.expand-description-btn:hover {
    color: #3182ce !important;
    text-decoration-color: #3182ce !important;
}

.expand-description-btn:focus {
    outline: 2px solid #4299e1 !important;
    outline-offset: 2px !important;
    border-radius: 4px !important;
}

/* ============================
   TUX Revolution: Enhanced Form Placeholder Styling
============================= */
.enquiry-form input,
.enquiry-form textarea {
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
    color: #9ca3af;
    font-style: italic;
    font-weight: 400;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.enquiry-form input:focus::placeholder,
.enquiry-form textarea:focus::placeholder {
    opacity: 0.7;
    transform: translateY(-2px);
}

/* Universal placeholder visibility fix */
input::placeholder,
textarea::placeholder {
    color: #9ca3af !important;
    opacity: 1 !important;
    font-style: italic;
}

/* Contact form specific fixes */
#messageInput::placeholder,
#enquiryDetails::placeholder {
    color: #9ca3af !important;
    opacity: 1 !important;
    font-style: italic;
    font-weight: 400;
}

.enquiry-form .form-group {
    margin-bottom: 1.25rem;
}

.enquiry-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================
   TUX Revolution: Ultimate Interactive PDP Layout
============================= */

/* Ultimate PDP Layout - Perfect 75% Form, 25% Trust Badges Fit */
.enquiry-content-wrapper {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 500px;
}

.enquiry-content {
    flex: 3; /* 75% ratio */
    max-width: 750px;
    min-width: 0;
    width: 100%;
}

.enquiry-trust-badges {
    flex: 1; /* 25% ratio */
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 250px;
    min-width: 250px;
    max-width: 250px;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(248, 250, 252, 0.98), rgba(255, 255, 255, 0.95));
    border-radius: 12px;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.enquiry-trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid;
    min-width: 200px;
}

.enquiry-trust-badges .badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.enquiry-trust-badges .badge i {
    font-size: 1.5rem;
}

.enquiry-trust-badges .badge span {
    font-weight: 600;
    font-size: 1rem;
}

.enquiry-trust-badges .badge:hover i {
    color: #047857;
    transform: scale(1.05);
}

/* Badge specific colors */
.enquiry-trust-badges .iso-badge i {
    color: #dc2626;
}

.enquiry-trust-badges .fda-badge i {
    color: #2563eb;
}

.enquiry-trust-badges .eco-badge i {
    color: #059669;
}

.enquiry-trust-badges .iso-badge:hover i {
    color: #b91c1c;
}

.enquiry-trust-badges .fda-badge:hover i {
    color: #1d4ed8;
}

.enquiry-trust-badges .eco-badge:hover i {
    color: #047857;
}

/* Mobile Responsive Layout - Trust Badges Below Form */
@media (max-width: 768px) {
    .enquiry-content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .enquiry-content {
        flex: none;
        max-width: none;
    }
    
    .enquiry-trust-badges {
        flex: none;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        min-width: auto;
        padding: 1.5rem;
        gap: 1rem;
        /* Position below form on mobile */
        order: 2;
    }
    
    .enquiry-trust-badges .badge {
        flex: 1;
        min-width: 140px;
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .enquiry-trust-badges .badge i {
        font-size: 1.2rem;
    }
}

/* Enhanced Form Styling within Limited Width */
.enquiry-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.enquiry-title {
    font-size: 2rem;
    font-weight: 700;
    color: linear-gradient(135deg, var(--brand-primary-color) 0%, var(--brand-secondary-color) 100%);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.enquiry-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.5;
}