/* Sofa Luxe Pro - Premium Modern Living Room Furniture Website Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #f5f5f5;
    background: #3C3739;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: #b0b0b0;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

/* Shop - Craftsmanship & Assurance (unique section) */
.shop-assurance-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2F2B2C 0%, #3C3739 100%);
    border-top: 1px solid rgba(255, 107, 53, 0.15);
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
}

.assurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.assurance-card {
    background: rgba(60,55,57,0.9);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.15);
}

.assurance-card .card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    box-shadow: 0 8px 22px rgba(255, 107, 53, 0.35);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.assurance-card h3 { color: #fff; margin-bottom: 0.5rem; font-size: 1.25rem; }
.assurance-card p { color: #cfcfcf; }

.checklist { list-style: none; margin-top: 0.75rem; }
.checklist li { display: flex; align-items: center; gap: 0.5rem; color: #b0b0b0; margin: 0.4rem 0; }
.checklist li i { color: #4ade80; }

.process-steps {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.process-step {
    background: rgba(60,55,57,0.85);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 14px;
    padding: 1rem;
    text-align: center;
    color: #d0d0d0;
}

.process-step .step-number {
    display: inline-block;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.35);
    color: #ff6b35;
    font-weight: 800;
    line-height: 28px;
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    .assurance-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .assurance-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: rgba(247, 147, 30, 0.1);
    color: #f7931e;
    border: 2px solid rgba(247, 147, 30, 0.3);
}

.btn-secondary:hover {
    background: rgba(247, 147, 30, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-outline:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(60, 55, 57, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background: rgba(60, 55, 57, 0.98);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo i {
    font-size: 2rem;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.logo i:hover {
    transform: scale(1.1);
    color: #f7931e;
}

/* Support image-based logos */
.logo img {
    height: 36px;
    width: auto;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
    opacity: 0.95;
}

/* Footer logo sizing */
.footer-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #f5f5f5;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #f5f5f5;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2F2B2C 0%, #3C3739 50%, #4A4547 100%);
    padding-top: 80px;
}

.hero-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
    animation: meshFloat 12s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.05) 50%, transparent 70%);
    animation: overlayShift 15s ease-in-out infinite;
}

@keyframes meshFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

@keyframes overlayShift {
    0%, 100% { transform: translateX(-30px); }
    50% { transform: translateX(30px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(247, 147, 30, 0.1);
    color: #f7931e;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(247, 147, 30, 0.2);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sofa-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.showcase-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    animation: frameRotate 25s linear infinite;
}

@keyframes frameRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.element-float {
    position: absolute;
    background: rgba(255, 107, 53, 0.9);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    animation: elementPulse 3s ease-in-out infinite;
}

.element-1 {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.element-2 {
    bottom: 15%;
    right: -10%;
    animation-delay: 1.5s;
}

@keyframes elementPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Video Showcase Section */
.video-showcase-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #2F2B2C 0%, #4A4547 100%);
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    background: rgba(60, 55, 57, 0.8);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.video-placeholder {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
}

.video-placeholder i {
    font-size: 4rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.video-placeholder h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.video-placeholder p {
    color: #b0b0b0;
    font-size: 1.1rem;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 55, 57, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

/* Lifestyle Gallery Section (Homepage replacement for video) */
.lifestyle-gallery-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #2F2B2C 0%, #4A4547 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.18);
    min-height: 220px;
    background: #3C3739 center/cover no-repeat;
}

.gallery-card.large { grid-column: span 2; min-height: 320px; }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(60,55,57,0.0), rgba(60,55,57,0.55));
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.gallery-caption {
    color: #fff;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-card.large { grid-column: span 2; }
}

@media (max-width: 640px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* Lightbox for Lifestyle Gallery */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(60, 55, 57, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.lightbox-overlay.active { display: flex; }

.lightbox-content {
    position: relative;
    max-width: 92vw;
    max-height: 88vh;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.35);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.25);
    background: #3C3739;
}

.lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 88vh;
}

.lightbox-close,
.lightbox-arrow {
    position: absolute;
    background: rgba(60,55,57,0.7);
    color: #fff;
    border: 1px solid rgba(255,107,53,0.4);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lightbox-close:hover,
.lightbox-arrow:hover { background: rgba(60,55,57,0.9); border-color: rgba(255,107,53,0.6); }

.lightbox-close { top: 10px; right: 10px; }
.lightbox-arrow.prev { left: 10px; top: 50%; transform: translateY(-50%); }
.lightbox-arrow.next { right: 10px; top: 50%; transform: translateY(-50%); }

/* Homepage Image Slider */
.home-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.home-slider .slides {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.home-slider .slide {
    min-width: 100%;
    height: 520px;
    background: #3C3739 center/cover no-repeat;
}

.home-slider .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(60,55,57,0.6);
    border: 1px solid rgba(255,107,53,0.3);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.home-slider .nav-arrow:hover { background: rgba(60,55,57,0.8); border-color: rgba(255,107,53,0.5); }
.home-slider .nav-arrow.prev { left: 1rem; }
.home-slider .nav-arrow.next { right: 1rem; }

.home-slider .dots {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.home-slider .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: 1px solid rgba(255,107,53,0.5);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.home-slider .dot.active { background: #ff6b35; transform: scale(1.1); }

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.9);
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: #ff6b35;
}

/* Features Hexagon Section */
.features-hexagon-section {
    padding: 8rem 0;
    background: #3C3739;
    position: relative;
}

.hexagon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-hexagon {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(60, 55, 57, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-hexagon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s;
}

.feature-hexagon:hover::before {
    left: 100%;
}

.feature-hexagon:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.hexagon-shape {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.feature-hexagon:hover .hexagon-shape {
    transform: scale(1.1) rotate(10deg);
}

.feature-hexagon h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-hexagon p {
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

/* Product Showcase Section */
.product-showcase-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #2F2B2C 0%, #3C3739 100%);
}

.showcase-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-gallery {
    position: relative;
}

.main-showcase {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.showcase-main-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.showcase-main-image:hover {
    transform: scale(1.05);
}

.image-tags {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.tag {
    background: rgba(255, 107, 53, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.tag.premium {
    background: rgba(247, 147, 30, 0.9);
}

.showcase-thumbnails {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #ff6b35;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

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

.showcase-content {
    padding-left: 2rem;
}

.content-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.showcase-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.showcase-content p {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.living-benefits h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-tag {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #b0b0b0;
    font-weight: 500;
    padding: 0.75rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.benefit-tag:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.benefit-tag i {
    color: #ff6b35;
    font-size: 1.1rem;
}

.showcase-action {
    margin-top: 2rem;
}

/* Specifications Section */
.specifications-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #4A4547 0%, #2F2B2C 100%);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.spec-card {
    background: rgba(60, 55, 57, 0.8);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.spec-card:hover::before {
    transform: scaleX(1);
}

.spec-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.spec-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.spec-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.spec-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

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

.spec-label {
    font-weight: 600;
    color: #d0d0d0;
}

.spec-value {
    color: #ffffff;
    font-weight: 500;
    text-align: right;
}

/* Size Variations Section */
.variations-section {
    padding: 8rem 0;
    background: #3C3739;
}

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

.size-card {
    background: rgba(60, 55, 57, 0.8);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.size-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.size-card:hover::before {
    transform: scaleX(1);
}

.size-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.size-card.featured {
    border-color: #ff6b35;
    transform: scale(1.05);
}

.size-card.featured::before {
    transform: scaleX(1);
}

.size-header {
    text-align: center;
    margin-bottom: 2rem;
}

.size-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.size-badge {
    display: inline-block;
    background: rgba(247, 147, 30, 0.2);
    color: #f7931e;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.size-badge.popular {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
}

.price-tag {
    text-align: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #b0b0b0;
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
}

.cents {
    font-size: 1.5rem;
    font-weight: 600;
    color: #b0b0b0;
}

.size-features {
    margin-bottom: 2rem;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #b0b0b0;
}

.feature-point i {
    color: #4ade80;
    font-size: 1rem;
}

/* Product Page - Shop Styles */
.product-hero-section {
    padding: 9rem 0 5rem;
    background: linear-gradient(135deg, #2F2B2C 0%, #4A4547 100%);
    position: relative;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.product-hero-section .hero-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.08) 0%, transparent 50%);
    animation: meshFloat 12s ease-in-out infinite;
    pointer-events: none;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.product-gallery { order: 1; }
.product-info { order: 2; }

.product-info .product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-info h1 { margin-bottom: 1rem; }
.product-subtitle { font-size: 1.1rem; color: #d0d0d0; margin-bottom: 1.5rem; }

.product-highlights { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.highlight-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.highlight-item { display: flex; align-items: center; gap: 0.75rem; background: rgba(255, 107, 53, 0.06); padding: 0.75rem 1rem; border-radius: 12px; border: 1px solid rgba(255, 107, 53, 0.15); }
.highlight-item i { color: #ff6b35; }

.product-pricing { margin-top: 1.5rem; }
.product-pricing .price-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; }
.product-pricing .price-option { background: rgba(60,55,57,0.8); border: 1px solid rgba(255,107,53,0.2); border-radius: 14px; padding: 1rem 1.25rem; }
.product-pricing .price-option .price-label { display: block; color: #b0b0b0; font-size: 0.9rem; }
.product-pricing .price-option .price-value { display: block; color: #ffffff; font-size: 1.6rem; font-weight: 800; }
.product-pricing .price-option.featured { border-color: #ff6b35; background: rgba(255, 107, 53, 0.08); }
.product-pricing .price-option .price-note { display: block; color: #d0d0d0; font-size: 0.85rem; }

.product-gallery { position: relative; }
.main-product-view { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255, 107, 53, 0.2); box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2); }
.main-product-view .main-image { width: 100%; height: auto; display: block; transition: opacity 0.2s ease; }
.image-badges { position: absolute; top: 1rem; left: 1rem; display: flex; gap: 0.5rem; }
.image-badges .badge { background: rgba(255, 107, 53, 0.9); color: #fff; padding: 0.4rem 0.75rem; border-radius: 999px; font-size: 0.8rem; font-weight: 700; box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35); }
.image-badges .badge.organic { background: rgba(74, 222, 128, 0.9); box-shadow: 0 8px 20px rgba(74, 222, 128, 0.35); }

.thumbnail-gallery { display: flex; gap: 0.75rem; margin-top: 1rem; }

/* Detailed Specifications (tabs) */
.detailed-specs-section { padding: 6rem 0; background: linear-gradient(135deg, #4A4547 0%, #2F2B2C 100%); }
.specs-layout { display: grid; grid-template-columns: 0.4fr 1.6fr; gap: 2.5rem; align-items: start; }
.specs-navigation h2 { font-size: 2rem; margin-bottom: 1rem; }
.spec-tabs { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.spec-tab { background: rgba(60,55,57,0.8); color: #d0d0d0; border: 1px solid rgba(255,107,53,0.2); padding: 0.5rem 1rem; border-radius: 999px; cursor: pointer; font-weight: 600; transition: all 0.2s ease; }
.specs-content { background: rgba(60,55,57,0.8); border: 1px solid rgba(255,107,53,0.2); border-radius: 16px; padding: 1.5rem; }
.spec-item { display: flex; gap: 0.75rem; align-items: center; background: rgba(60,55,57,0.8); border: 1px solid rgba(255,107,53,0.2); border-radius: 12px; padding: 0.75rem 1rem; }
.spec-panel { display: none; }
.spec-panel.active { display: block; }
.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
.spec-item { display: flex; gap: 0.75rem; align-items: center; background: rgba(60,55,57,0.8); border: 1px solid rgba(255,107,53,0.2); border-radius: 12px; padding: 0.75rem 1rem; }
.spec-icon { min-width: 48px; min-height: 48px; border-radius: 12px; }
.spec-details h4 { color: #ffffff; margin-bottom: 0.15rem; font-size: 1rem; }
.spec-note { color: #b0b0b0; font-size: 0.85rem; }

/* Purchase CTA for product page */
.purchase-cta-section { position: relative; padding: 6rem 0; background: linear-gradient(135deg, #2F2B2C 0%, #4A4547 100%); }
.purchase-cta-section .cta-background { position: absolute; inset: 0; overflow: hidden; }
.purchase-cta-section .cta-background .cta-pattern { position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%); animation: meshFloat 8s ease-in-out infinite; }
.purchase-cta-section .cta-content { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.guarantee-features { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0.75rem; margin-top: 1.25rem; }
.guarantee-item { display: flex; align-items: center; gap: 0.5rem; color: #d0d0d0; background: rgba(255,107,53,0.06); border: 1px solid rgba(255,107,53,0.15); border-radius: 12px; padding: 0.6rem 0.8rem; }
.guarantee-item i { color: #ff6b35; }
.final-pricing { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin-bottom: 1rem; }
.pricing-option { background: rgba(60,55,57,0.8); border: 1px solid rgba(255,107,53,0.2); border-radius: 14px; padding: 1rem 1.25rem; }
.pricing-option { background: rgba(60,55,57,0.8); border: 1px solid rgba(255,107,53,0.2); border-radius: 14px; padding: 1rem 1.25rem; }
.pricing-option.featured { border-color: #ff6b35; background: rgba(255, 107, 53, 0.08); }
.option-label { display: block; color: #b0b0b0; font-size: 0.9rem; }
.option-price { display: block; color: #ffffff; font-weight: 800; font-size: 1.4rem; }
.option-badge { display: inline-block; margin-top: 0.25rem; background: rgba(247,147,30,0.2); color: #f7931e; border: 1px solid rgba(247,147,30,0.35); padding: 0.15rem 0.5rem; border-radius: 8px; font-size: 0.8rem; }
.security-badges { display: flex; gap: 0.75rem; margin-top: 1rem; }
.security-item { display: flex; align-items: center; gap: 0.5rem; color: #b0b0b0; }

/* Responsive tweaks for product page */
@media (max-width: 1024px) {
    .product-hero-grid { grid-template-columns: 1fr; }
    .purchase-cta-section .cta-content { grid-template-columns: 1fr; text-align: center; }
    .guarantee-features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .highlight-row { grid-template-columns: 1fr; }
    .product-pricing .price-options { grid-template-columns: 1fr; }
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #4A4547 0%, #2F2B2C 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    animation: meshFloat 8s ease-in-out infinite;
}

.cta-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-text p {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #d0d0d0;
    font-weight: 500;
}

.highlight-point i {
    color: #ff6b35;
    font-size: 1.2rem;
}

.cta-action {
    text-align: left;
    background: rgba(60,55,57,0.85);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.18);
}

.price-highlight {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #d0d0d0;
}

.guarantee-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.guarantee-text i {
    color: #4ade80;
}

/* Footer */
footer {
    background: #050505;
    color: #d0d0d0;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-logo i {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

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

.footer-section ul li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    color: #b0b0b0;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .showcase-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .showcase-content {
        padding-left: 0;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(60, 55, 57, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .hexagon-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .size-grid {
        grid-template-columns: 1fr;
    }
    
    .size-card.featured {
        transform: none;
    }
    
    .cta-text h2 { font-size: 2.2rem; }
    .home-slider .slide { height: 340px; }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-hexagon {
        padding: 1.5rem;
    }
    
    .hexagon-shape {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .showcase-content h2 {
        font-size: 2rem;
    }
    
    .price-tag .amount {
        font-size: 2.5rem;
    }
    
    .cta-text h2 { font-size: 1.8rem; }
    .home-slider .slide { height: 260px; }
}

/* Reviews Section (Homepage replacement for size chooser) */
.reviews-section {
    padding: 8rem 0;
    background: #3C3739;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.review-card {
    background: rgba(60,55,57,0.85);
    border: 1px solid rgba(255,107,53,0.2);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 12px 36px rgba(255,107,53,0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(255,107,53,0.18); }
.review-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #ff6b35, #f7931e); display: inline-flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 0.9rem; letter-spacing: 0.5px; }
.review-name { color: #fff; font-weight: 700; }
.review-stars { color: #fbbf24; }
.review-text { color: #c7c7c7; }

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

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Page Sections - Shared Page Hero */
.page-hero {
    padding: 7rem 0 3rem;
    background: linear-gradient(135deg, #2F2B2C 0%, #4A4547 100%);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}
.page-hero h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}
.page-hero p {
    font-size: 1.1rem;
    color: #b0b0b0;
}

/* About Page */
.about-content-section { padding: 4rem 0; background: #3C3739; }
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: start; }
.about-text h2 { font-size: 2rem; color: #ffffff; margin-bottom: 1rem; }
.about-text h3 { font-size: 1.25rem; color: #ffffff; margin-top: 1.5rem; }
.image-stack { position: relative; }
.stack-image { width: 100%; border-radius: 14px; box-shadow: 0 12px 35px rgba(255,107,53,0.2); }
.stack-image.secondary { position: absolute; right: -10%; bottom: -10%; width: 60%; border: 6px solid #3C3739; }
.stats-overlay { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 1.25rem; }
.stat-item { background: rgba(60,55,57,0.8); border: 1px solid rgba(255,107,53,0.2); border-radius: 12px; padding: 0.75rem; text-align: center; }
.stat-number { color: #ff6b35; }

.values-section { padding: 4rem 0; background: #2F2B2C; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem; }
.value-card { background: rgba(60,55,57,0.8); border: 1px solid rgba(255,107,53,0.2); border-radius: 16px; padding: 1.5rem; box-shadow: 0 8px 24px rgba(255,107,53,0.1); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.value-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(255,107,53,0.2); }
.value-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, #ff6b35, #f7931e); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 8px 24px rgba(255,107,53,0.3); margin-bottom: 1rem; }

/* Contact Page */
.contact-content-section { padding: 4rem 0; background: #3C3739; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.contact-info .info-header h2 { font-size: 1.75rem; }
.contact-methods { display: grid; grid-template-columns: 1fr; gap: 1rem; margin: 1rem 0; }
.contact-method { display: flex; gap: 1rem; background: rgba(60,55,57,0.8); border: 1px solid rgba(255,107,53,0.2); border-radius: 14px; padding: 1rem; align-items: center; }
.method-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,107,53,0.2); color: #ff6b35; display: inline-flex; align-items: center; justify-content: center; }
.support-features .feature-item { background: rgba(60,55,57,0.8); border: 1px solid rgba(255,107,53,0.2); border-radius: 12px; padding: 0.75rem 1rem; }
.contact-form-section { background: rgba(60,55,57,0.8); border: 1px solid rgba(255,107,53,0.2); border-radius: 16px; padding: 1.5rem; box-shadow: 0 10px 28px rgba(255,107,53,0.1); }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.contact-form label { font-weight: 600; color: #d0d0d0; }
.contact-form input, .contact-form select, .contact-form textarea { padding: 0.875rem 1rem; border: 1px solid rgba(255,107,53,0.2); border-radius: 10px; font: inherit; color: #ffffff; background: rgba(60,55,57,0.8); }
.checkbox-group .checkbox-label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.checkbox-group input[type="checkbox"] { width: 18px; height: 18px; }

.faq-section { padding: 3rem 0; background: #3C3739; }
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.faq-item { border: 1px solid rgba(255,107,53,0.2); border-radius: 12px; overflow: hidden; background: rgba(60,55,57,0.8); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; cursor: pointer; background: rgba(255,107,53,0.1); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 1.25rem; }
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 1rem; }

/* Blog Listing Page */
.blog-content-section { padding: 4rem 0; }
.blog-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; align-items: start; }
.blog-card { background: rgba(60,55,57,0.8); border: 1px solid rgba(255,107,53,0.2); border-radius: 16px; overflow: hidden; box-shadow: 0 12px 30px rgba(255,107,53,0.1); }
.blog-card .blog-image img { width: 100%; display: block; }
.blog-card .blog-content { padding: 1.25rem; }
.blog-card .blog-meta { display: flex; gap: 1rem; color: #b0b0b0; font-size: 0.9rem; margin-bottom: 0.5rem; }
.blog-card h2 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.blog-card .read-more { display: inline-flex; align-items: center; gap: 0.5rem; color: #ff6b35; text-decoration: none; font-weight: 600; }
.blog-card.featured { border-color: #ff6b35; }
.blog-badge { position: absolute; top: 12px; left: 12px; background: #ff6b35; color: #fff; padding: 0.3rem 0.6rem; border-radius: 999px; font-size: 0.8rem; display: inline-flex; align-items: center; gap: 0.4rem; }

/* Legal Pages (Privacy, Terms, Cookies) */
.legal-page { padding: 4rem 0; background: #3C3739; }
.legal-header h1 { font-size: 2rem; }
.last-updated { color: #b0b0b0; }
.legal-content { display: grid; gap: 1rem; margin-top: 1rem; }
.legal-section { background: rgba(60,55,57,0.8); border: 1px solid rgba(255,107,53,0.2); border-radius: 14px; padding: 1.25rem 1.5rem; box-shadow: 0 8px 20px rgba(255,107,53,0.1); }

/* Small tweaks for fixed navbar offset on inner pages */
main { padding-top: 4.5rem; }

/* Shop Page Specific Styles */
.product-hero-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #2F2B2C 0%, #4A4547 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.05) 0%, transparent 50%);
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.product-hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.product-subtitle {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.product-highlights {
    margin-bottom: 3rem;
}

.highlight-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.highlight-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    width: 40px;
    text-align: center;
}

.highlight-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.highlight-item p {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin: 0;
}

.product-pricing {
    background: rgba(255, 107, 53, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    backdrop-filter: blur(10px);
}

.price-options {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.price-option {
    flex: 1;
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.price-option.featured {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.price-note {
    font-size: 0.8rem;
    color: #ff6b35;
    font-weight: 600;
}

.product-gallery {
    position: relative;
}

.main-product-view {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    margin-bottom: 1.5rem;
}

.main-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.05);
}

.image-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    background: rgba(255, 107, 53, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.badge.professional {
    background: rgba(72, 187, 120, 0.9);
}

.badge.organic {
    background: rgba(247, 147, 30, 0.9);
}

.thumbnail-gallery {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

/* Responsive overrides for subpages */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .stack-image.secondary { position: static; width: 100%; border: none; margin-top: 1rem; }
    .product-hero-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    /* Mobile menu icon color */
    .mobile-menu-toggle span { background: #ff6b35; }
}

/* Responsive adjustments for Product Specifications (shop page) and About page visuals */
@media (max-width: 768px) {
    /* Stack tabs above details in Product Specifications */
    .specs-layout { grid-template-columns: 1fr; gap: 1.25rem; }
    .specs-navigation { order: 1; }
    .specs-content { order: 2; }

    /* Hide image section in About > Our Mission on mobile */
    .about-grid .about-visual { display: none; }
}

@media (max-width: 768px) {
    .contact-form .form-row { grid-template-columns: 1fr; }
    .product-hero-section h1 { font-size: 2.5rem; }
    .highlight-row { flex-direction: column; gap: 1rem; }
    .price-options { flex-direction: column; gap: 1rem; }
}

@media (max-width: 480px) {
    .product-hero-section h1 { font-size: 2rem; }
    .thumbnail-gallery { flex-wrap: wrap; }
    .cta-text h2 { font-size: 2rem; }
}