/* Responsive Design */

/* Large Desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .navbar .container {
        min-height: 70px;
    }
    
    .nav-brand h2 {
        font-size: 2.2rem;
    }
    
    .nav-brand .tagline {
        font-size: 0.9rem;
    }
    
    .nav-list {
        gap: 2.5rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .nav-actions {
        gap: 1rem;
    }
    
    .nav-whatsapp-btn,
    .nav-contact-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
}

/* Desktop */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .nav-list {
        gap: 1.5rem;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-whatsapp-btn,
    .nav-contact-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 15px;
    }
    
    /* Navigation */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar .container {
        min-height: 50px;
    }
    
    .nav-brand {
        margin-right: 1rem;
    }
    
    .nav-brand h2 {
        font-size: 1.6rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 68px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 68px);
        background-color: var(--white);
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 0.5rem;
        height: auto;
        justify-content: flex-start;
        align-items: stretch;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-actions {
        gap: 0.5rem;
        margin-left: 1rem;
    }
    
    .nav-whatsapp-btn,
    .nav-contact-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .lang-toggle {
        padding: 6px 10px;
        font-size: 0.8rem;
        min-width: 50px;
    }
    
    .nav-toggle {
        display: flex;
        padding: 6px;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        background-color: var(--light-gray);
        margin: 0;
        padding: 0;
        border-radius: 6px;
        min-width: 100%;
        transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease, margin 0.3s ease, padding 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        margin: 0.5rem 0 1rem 0;
        padding: 0.75rem 0;
    }
    
    .dropdown.active .nav-link i.fa-chevron-down {
        transform: rotate(180deg);
    }
    
    .dropdown .nav-link i.fa-chevron-down {
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    /* Hero Section */
    .hero:not(.creative-hero) {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 200px;
    }
    
    /* Categories */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Highlights */
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Clients */
    .clients-logos {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Timeline */
    .timeline-container {
        max-width: 100%;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .timeline-container::before {
        left: 30px;
        width: 4px;
    }

    .timeline-marker {
        left: 0;
        transform: translateX(0);
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CTA */
    .cta h2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 200px;
    }

    /* Brand Story */
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .image-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .image-item.large {
        grid-row: span 1;
    }

    .image-item {
        height: auto;
        min-height: 200px;
    }
}

/* Mobile Large */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 10px;
    }

    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        margin: 0;
        padding: 0;
    }

    body {
        padding-top: 61px;
    }

    .page-header {
        margin-top: 61px;
    }

    s */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.2rem; }
    
    /* Navigation */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar .container {
        min-height: 45px;
    }
    
    .nav-brand {
        margin-right: 0.75rem;
    }
    
    .nav-brand h2 {
        font-size: 1.4rem;
    }
    
    .nav-brand .tagline {
        font-size: 0.7rem;
    }
    
    .nav-menu {
        top: 61px;
        height: calc(100vh - 61px);
    }
    
    .nav-list {
        padding: 1.5rem 1rem;
    }
    
    .nav-actions {
        gap: 0.4rem;
        margin-left: 0.75rem;
    }
    
    .nav-whatsapp-btn {
        display: none; /* Hide WhatsApp button on mobile to save space */
    }
    
    .nav-contact-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .lang-toggle {
        padding: 6px 8px;
        font-size: 0.75rem;
        min-width: 45px;
    }
    
    .nav-toggle {
        padding: 4px;
    }
    
    .nav-toggle span {
        width: 22px;
        height: 2px;
    }
    
    /* Hero Section */
    .hero:not(.creative-hero) {
        height: 60vh;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-controls {
        display: none;
    }
    
    .prev-slide,
    .next-slide {
        width: 40px;
        height: 40px;
    }
    
    /* Sections */
    .highlights,
    .categories,
    .clients,
    .testimonials,
    .cta {
        padding: 3rem 0;
    }
    
    /* Highlights */
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlight-item {
        padding: 1.5rem;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Categories */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-content {
        padding: 1.5rem;
    }
    
    /* Clients */
    .clients-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Testimonials */
    .testimonial {
        padding: 1.5rem;
    }
    
    .testimonial p {
        font-size: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    /* Brand Story Mobile */
    .story-text {
        padding: 0 1rem;
    }

    .story-stats {
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .image-item {
        min-height: 250px;
    }
    
    /* Timeline */
    .timeline-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .timeline-item {
        margin-bottom: 3rem;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0;
        padding: 1.5rem 1rem;
        text-align: center;
    }

    .timeline-container::before {
        left: 20px;
        width: 3px;
    }

    .timeline-marker {
        left: 0;
        transform: translateX(0);
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .timeline-year {
        font-size: 1rem;
    }

    .timeline-content h3 {
        font-size: 1.3rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    /* CTA */
    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1rem;
    }
    
    /* WhatsApp */
    .whatsapp-chat {
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-chat a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Mobile Small */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }

    body {
        padding-top: 56px;
    }

    .page-header {
        margin-top: 56px;
    }

    /* Navigation */
    .navbar {
        padding: 0.6rem 0;
    }
    
    .navbar .container {
        min-height: 40px;
    }
    
    .nav-brand {
        margin-right: 0.5rem;
    }
    
    .nav-brand h2 {
        font-size: 1.2rem;
    }
    
    .nav-brand .tagline {
        font-size: 0.65rem;
    }
    
    .nav-menu {
        top: 56px;
        height: calc(100vh - 56px);
    }
    
    .nav-list {
        padding: 1rem 0.75rem;
    }
    
    .nav-actions {
        gap: 0.3rem;
        margin-left: 0.5rem;
    }
    
    .nav-contact-btn {
        padding: 5px 8px;
        font-size: 0.7rem;
    }
    
    .lang-toggle {
        padding: 5px 6px;
        font-size: 0.7rem;
        min-width: 40px;
    }
    
    .nav-toggle {
        padding: 3px;
    }
    
    .nav-toggle span {
        width: 20px;
        height: 2px;
    }
    
    /* Hero */
    .hero {
        height: 50vh;
    }
    
    .hero:not(.creative-hero) {
        height: 50vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-cta .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 180px;
    }
    
    /* Sections */
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    /* Highlights */
    .highlight-item {
        padding: 1rem;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    /* Categories */
    .category-image {
        height: 200px;
    }
    
    .category-content {
        padding: 1rem;
    }
    
    /* Clients */
    .clients-logos {
        grid-template-columns: 1fr;
    }
    
    .client-logo {
        padding: 0.5rem;
    }
    
    /* Testimonials */
    .testimonial {
        padding: 1rem;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }

    /* Brand Story Small Mobile */
    .story-paragraphs p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .image-item {
        min-height: 200px;
    }
    
    /* CTA */
    .cta {
        padding: 2rem 0;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons .btn {
        width: 160px;
        padding: 10px 16px;
    }
    
    /* Timeline */
    .timeline-container {
        padding: 0 0.5rem;
    }

    .timeline-item {
        margin-bottom: 2.5rem;
    }

    .timeline-content {
        padding: 1rem 0.75rem;
    }

    .timeline-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .timeline-year {
        font-size: 0.9rem;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-content {
        text-align: center;
    }

    .contact-info p {
        justify-content: center;
    }
}

/* Mobile Extra Small */
@media (max-width: 375px) {
    .container {
        padding: 0 10px;
    }

    body {
        padding-top: 51px;
    }

    .page-header {
        margin-top: 51px;
    }

    /* Navigation */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar .container {
        min-height: 35px;
    }
    
    .nav-brand h2 {
        font-size: 1.1rem;
    }
    
    .nav-brand .tagline {
        font-size: 0.6rem;
    }
    
    .nav-menu {
        top: 51px;
        height: calc(100vh - 51px);
    }
    
    .nav-actions {
        gap: 0.25rem;
        margin-left: 0.25rem;
    }
    
    .nav-contact-btn {
        padding: 4px 6px;
        font-size: 0.65rem;
    }
    
    .lang-toggle {
        padding: 4px 5px;
        font-size: 0.65rem;
        min-width: 35px;
    }
    
    .nav-toggle {
        padding: 2px;
    }
    
    .nav-toggle span {
        width: 18px;
        height: 2px;
    }
    
    .hero:not(.creative-hero) {
        height: 45vh;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-cta .btn {
        width: 150px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .highlight-item h3 {
        font-size: 1rem;
    }
    
    .category-content h3 {
        font-size: 1.2rem;
    }
    
    .cta h2 {
        font-size: 1.5rem;
    }
    
    .cta-buttons .btn {
        width: 140px;
    }
}

/* Landscape Mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        height: 80vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .hero-controls,
    .hero-indicators,
    .whatsapp-chat,
    .nav-toggle,
    .testimonial-controls {
        display: none !important;
    }
    
    .hero {
        margin-top: 0;
        height: auto;
        page-break-after: always;
    }
    
    .slide-bg::after {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .btn {
        border: 1px solid var(--primary-color);
        background: none !important;
        color: var(--primary-color) !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000080;
        --secondary-color: #ffd700;
        --text-dark: #000000;
        --text-light: #333333;
        --border-color: #000000;
    }
    
    .btn-primary {
        border: 2px solid var(--primary-color);
    }
    
    .btn-secondary {
        border: 2px solid var(--secondary-color);
    }
    
    .nav-link::after {
        height: 3px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .whatsapp-chat a {
        animation: none;
    }
    
    .fade-in {
        opacity: 1;
        transform: none;
    }
}

/* Force Light Mode - Remove Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #1e3a8a;
        --secondary-color: #fbbf24;
        --accent-color: #f59e0b;
        --text-dark: #1f2937;
        --text-light: #6b7280;
        --white: #ffffff;
        --light-gray: #f9fafb;
        --border-color: #e5e7eb;
    }
    
    body {
        background-color: var(--white);
        color: var(--text-dark);
    }
    
    .header {
        background-color: var(--white);
    }
    
    .highlight-item,
    .category-card,
    .client-logo {
        background-color: var(--white);
    }
    
    .dropdown-menu {
        background-color: var(--white);
    }
    
    .nav-menu {
        background-color: var(--white);
    }
}

/* ========================================
   PRODUCTS PAGE RESPONSIVE STYLES
   ======================================== */

/* Tablet - Products Page */
@media (max-width: 991px) {
    /* Product Categories Navigation */
    .product-categories-nav {
        padding: 1.5rem 0;
        top: 68px;
    }
    
    .category-tabs {
        gap: 0.75rem;
    }
    
    .category-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Product Sections */
    .product-section {
        padding: 3rem 0;
    }
    
    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
    }
    
    /* Product Features Section */
    .product-features-section {
        padding: 3rem 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Product Specifications */
    .product-specifications {
        padding: 3rem 0;
    }
    
    .specs-tabs {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .spec-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .spec-panel h3 {
        font-size: 1.5rem;
    }
    
    /* Materials Grid */
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .material-item {
        padding: 1.5rem;
    }
    
    
    /* Customization Options */
    .customization-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .custom-option {
        padding: 1.5rem;
    }
    
    .custom-option i {
        font-size: 2rem;
    }
    
    /* Product Testimonials */
    .product-testimonials {
        padding: 3rem 0;
    }
    
    .testimonial {
        padding: 2rem 1.5rem;
    }
    
    .testimonial p {
        font-size: 1rem;
    }
}

/* Mobile Large - Products Page */
@media (max-width: 767px) {
    /* Product Categories Navigation */
    .product-categories-nav {
        padding: 1rem 0;
        top: 61px;
    }
    
    .category-tabs {
        gap: 0.5rem;
    }
    
    .category-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    /* Product Sections */
    .product-section {
        padding: 2rem 0;
    }
    
    /* Product Grid */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .product-actions .btn {
        width: 100%;
    }
    
    /* Product Features Section */
    .product-features-section {
        padding: 2rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    /* Product Specifications */
    .product-specifications {
        padding: 2rem 0;
    }
    
    .specs-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .spec-tab {
        width: 200px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .spec-panel h3 {
        font-size: 1.3rem;
    }
    
    /* Materials Grid */
    .materials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .material-item {
        padding: 1.5rem;
    }
    
    .material-item h4 {
        font-size: 1.1rem;
    }
    
    
    /* Customization Options */
    .customization-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .custom-option {
        padding: 1.5rem;
    }
    
    .custom-option i {
        font-size: 1.8rem;
    }
    
    .custom-option h4 {
        font-size: 1.1rem;
    }
    
    /* Product Testimonials */
    .product-testimonials {
        padding: 2rem 0;
    }
    
    .testimonial {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .testimonial p {
        font-size: 0.95rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author img {
        width: 60px;
        height: 60px;
    }
    
    .prev-testimonial,
    .next-testimonial {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Mobile Small - Products Page */
@media (max-width: 575px) {
    /* Product Categories Navigation */
    .category-tab {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    /* Product Grid */
    .product-grid {
        gap: 1rem;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-info h3 {
        font-size: 1rem;
    }
    
    .product-info p {
        font-size: 0.9rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    /* Product Features Section */
    .feature-card {
        padding: 1rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
    }
    
    /* Product Specifications */
    .spec-tab {
        width: 150px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .spec-panel h3 {
        font-size: 1.2rem;
    }
    
    /* Materials Grid */
    .material-item {
        padding: 1rem;
    }
    
    .material-item h4 {
        font-size: 1rem;
    }
    
    
    /* Customization Options */
    .custom-option {
        padding: 1rem;
    }
    
    .custom-option i {
        font-size: 1.5rem;
    }
    
    .custom-option h4 {
        font-size: 1rem;
    }
    
    /* Product Testimonials */
    .testimonial {
        padding: 1rem;
        margin: 0 0.25rem;
    }
    
    .testimonial p {
        font-size: 0.9rem;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
    
    .prev-testimonial,
    .next-testimonial {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Mobile Extra Small - Products Page */
@media (max-width: 375px) {
    /* Product Categories Navigation */
    .category-tab {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
    
    /* Product Grid */
    .product-image {
        height: 160px;
    }
    
    .product-info {
        padding: 0.75rem;
    }
    
    .product-info h3 {
        font-size: 0.95rem;
    }
    
    .product-info p {
        font-size: 0.85rem;
    }
    
    .feature-tag {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    /* Product Features Section */
    .feature-card {
        padding: 0.75rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .feature-card h3 {
        font-size: 0.95rem;
    }
    
    /* Product Specifications */
    .spec-tab {
        width: 120px;
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .spec-panel h3 {
        font-size: 1.1rem;
    }
    
    /* Materials Grid */
    .material-item {
        padding: 0.75rem;
    }
    
    .material-item h4 {
        font-size: 0.95rem;
    }
    
    
    /* Customization Options */
    .custom-option {
        padding: 0.75rem;
    }
    
    .custom-option i {
        font-size: 1.2rem;
    }
    
    .custom-option h4 {
        font-size: 0.95rem;
    }
    
    /* Product Testimonials */
    .testimonial {
        padding: 0.75rem;
    }
    
    .testimonial p {
        font-size: 0.85rem;
    }
    
    .testimonial-author img {
        width: 45px;
        height: 45px;
    }
    
    .prev-testimonial,
    .next-testimonial {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* Logo Responsiveness */
@media (max-width: 768px) {
    .nav-brand .logo {
        width: 140px;
    }
    .nav-brand .tagline {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .nav-brand .logo {
        width: 120px;
    }
    .nav-brand .tagline {
        display: none;
    }
}
