/*
===============================================
BIG MOMMA - WEBSITE STYLES
===============================================
Table of Contents:
1. Font Imports & Typography
2. CSS Variables & Root Styles
3. Reset & Base Styles
4. Header & Hero Section
5. Navigation Styles
6. Main Content & Categories
7. Product Gallery
8. Brand Section
9. Footer Styles
10. About Us Page Styles
11. Responsive Design - Mobile First
12. Responsive Design - Tablet
13. Responsive Design - Desktop
===============================================
*/

/* ===============================================
   1. FONT IMPORTS & TYPOGRAPHY
   =============================================== */
@import url('https://fonts.googleapis.com/css2?family=Helvetica+Neue:wght@300;400;700&display=swap');

/* Baron Neue font family - Regular */
@font-face {
    font-family: 'Baron Neue';
    src: url('tipografia/Baron Neue.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Baron Neue font family - Italic */
@font-face {
    font-family: 'Baron Neue';
    src: url('tipografia/Baron Neue Italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

/* Baron Neue font family - Bold */
@font-face {
    font-family: 'Baron Neue';
    src: url('tipografia/Baron Neue Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Baron Neue font family - Bold Italic */
@font-face {
    font-family: 'Baron Neue';
    src: url('tipografia/Baron Neue Bold Italic.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

/* Baron Neue font family - Black */
@font-face {
    font-family: 'Baron Neue';
    src: url('tipografia/Baron Neue Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Baron Neue font family - Black Italic */
@font-face {
    font-family: 'Baron Neue';
    src: url('tipografia/Baron Neue Black Italic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

/* ===============================================
   2. CSS VARIABLES & ROOT STYLES
   =============================================== */
:root {
    /* Typography System */
    --font-titles: 'Baron Neue', 'Helvetica Neue', Arial, sans-serif;
    --font-subtitles: 'Helvetica Neue', Arial, sans-serif;
    --font-text: 'Helvetica Neue', Arial, sans-serif;
    
    /* Font Weights */
    --weight-light: 300;
    --weight-regular: 400;
    --weight-bold: 700;
    
    /* Primary Brand Colors */
    --primary-dark: #262626;
    --primary-white: #FFFFFF;
    --primary-blue: #6391C2;
    
    /* Secondary Brand Colors */
    --secondary-green: #58A664;
    --secondary-yellow: #FFD52E;
    --secondary-orange: #FCA10D;
    --secondary-red: #F2532C;
    
    /* Utility Colors */
    --background-dark: #1a1a1a;
    --text-light: #f8f9fa;
    --overlay-dark: rgba(0, 0, 0, 0.5);
    
    /* Transitions & Effects */
    --transition-smooth: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s ease;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.2);
    --shadow-heavy: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ===============================================
   3. RESET & BASE STYLES
   =============================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-text);
    font-weight: var(--weight-light);
    background-color: var(--background-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===============================================
   4. HEADER & HERO SECTION
   =============================================== */
.main-header {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--overlay-dark);
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.header-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image slideshow styles */
.image-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.header-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.header-slide.active {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(38, 38, 38, 0.3) 0%, rgba(26, 26, 26, 0.1) 100%);
    z-index: 1;
}

/* Header Content */
.header-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
}

.logo-container {
    margin-bottom: 0.2rem;
}

.logo {
    max-height: 350px;
    width: auto;
    height: auto;
    max-width: 100%;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.company-phrase {
    font-family: var(--font-titles);
    font-weight: var(--weight-bold);
    font-size: 1.8rem;
    color: var(--primary-blue);
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 0;
    text-transform: uppercase;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); A BAUTI ON LE GUSTA*/
}

/* Discover Section */
.discover-section {
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0.5rem;
    border-radius: 10px;
    position: absolute;
    bottom: 8vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.discover-section:hover {
    transform: translate(-50%, -5px);
}

.discover-text {
    font-family: var(--font-text);
    font-weight: var(--weight-regular);
    color: var(--primary-white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.discover-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.discover-arrows i {
    color: var(--primary-white);
    font-size: 1.2rem;
    animation: bounceArrow 2s infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: var(--primary-white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;        /* Reduce vertical spacing */
    margin: 0;             /* Remove default margin */
}

.discover-arrows i:nth-child(2) {
    margin-top: -8px;
    background: var(--primary-white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}

/* ===============================================
   4. NAVIGATION STYLES
   =============================================== */

/* Bootstrap Navbar Toggler - Remove focus outline */
.navbar-toggler {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler:active {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Main Navigation (Test.html) */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(38, 38, 38, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--secondary-yellow);
    z-index: 1000;
    padding: 1rem 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.main-nav.visible {
    transform: translateY(0);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.nav-logo-img {
    max-height: 60px;
    width: auto;
}

.nav-company-phrase {
    font-family: var(--font-titles);
    font-size: 1.3rem;
    color: var(--primary-white);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 1.2rem;
}

/* Navigation Menu Styles */
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-subtitles);
    color: var(--primary-white);
    text-decoration: none;
    font-weight: var(--weight-bold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-yellow);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-yellow);
    text-decoration: none;
    transform: translateY(-2px);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

/* Nosotros Section Styles */
.nosotros {
    padding: 5rem 0;
    background-color: var(--primary-white);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.nosotros-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.nosotros-hero h2 {
    font-family: var(--font-titles);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
}

.nosotros-hero h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-yellow) 0%, var(--secondary-orange) 100%);
    border-radius: 2px;
}

.story-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.story-image {
    flex: 0 0 400px;
    position: relative;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    filter: grayscale(20%);
}

.story-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    filter: grayscale(0%);
}

.story-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-yellow) 0%, var(--secondary-orange) 100%);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.3;
    transition: var(--transition-smooth);
}

.story-image:hover::before {
    opacity: 0.5;
    transform: translate(-5px, -5px);
}

.story-content {
    flex: 1;
}

.story-text p {
    font-family: var(--font-text);
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.8rem;
    font-weight: var(--weight-light);
    text-align: justify;
}

.story-manifesto {
    background: linear-gradient(135deg, var(--primary-dark) 0%, rgba(38, 38, 38, 0.9) 100%);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.story-manifesto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 213, 46, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

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

.story-manifesto p {
    font-family: var(--font-titles);
    font-size: 1.4rem;
    color: var(--primary-white);
    margin-bottom: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.story-manifesto p:last-child {
    margin-bottom: 0;
    color: var(--secondary-yellow);
    font-size: 1.6rem;
}

.artist-signature {
    margin-top: 2rem;
    text-align: center;
    font-style: italic;
    color: #777;
    font-size: 1.1rem;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

/* Mobile Responsive Styles for Nosotros */
@media (max-width: 991px) {
    .nosotros {
        padding: 3rem 0;
    }
    
    .nosotros-hero h2 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .story-container,
    .story-container-reverse {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .story-image {
        flex: none;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .story-image img {
        height: 400px;
    }
    
    .story-content {
        flex: none;
    }
    
    .story-text p {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .story-manifesto {
        padding: 2rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .story-manifesto p {
        font-size: 1.2rem;
    }
    
    .story-manifesto p:last-child {
        font-size: 1.4rem;
    }
    
    .artist-signature {
        font-size: 1rem;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .story-image {
        max-width: 320px;
    }
    
    .story-image img {
        height: 380px;
    }
}

@media (max-width: 576px) {
    .nosotros-hero h2 {
        font-size: 2rem;
    }
    
    .story-image {
        max-width: 300px;
    }
    
    .story-image img {
        height: 350px;
    }
    
    .story-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .story-manifesto {
        padding: 1.5rem;
    }
    
    .story-manifesto p {
        font-size: 1.1rem;
    }
    
    .story-manifesto p:last-child {
        font-size: 1.3rem;
    }
}

/* ===============================================
   4.1. PRODUCT NAVIGATION STYLES
   =============================================== */



/* Product Navigation */
.product-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(38, 38, 38, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--secondary-yellow);
    z-index: 1000;
    padding: 1rem 0;
}

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

.product-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.product-nav-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.product-nav-logo-img {
    max-height: 60px;
    width: auto;
}

.product-nav-company-phrase {
    font-family: var(--font-titles);
    font-size: 1.2rem;
    color: var(--primary-white);
    font-style: italic;
    font-weight: var(--weight-light);
    text-transform: uppercase;
}

.product-nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.product-nav-link {
    font-family: var(--font-subtitles);
    color: var(--primary-white);
    text-decoration: none;
    font-weight: var(--weight-bold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.product-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-yellow);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.product-nav-link:hover,
.product-nav-link.active {
    color: var(--secondary-yellow) !important;
    text-decoration: none;
    transform: translateY(-2px);
}

.product-nav-link:hover::before,
.product-nav-link.active::before {
    width: 100%;
}

/* Product Navigation Hamburger Menu Styles */
.product-hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1001;
}

.product-hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--primary-white);
    border-radius: 2px;
    transition: var(--transition-smooth);
    transform-origin: center;
}

.product-hamburger-menu.active .product-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.product-hamburger-menu.active .product-hamburger-line:nth-child(2) {
    opacity: 0;
}

.product-hamburger-menu.active .product-hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Product Navigation Menu */
@media (max-width: 991px) {
    .product-nav-content {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }
    
    .product-nav-logo {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 0;
    }
    
    .product-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, rgba(38, 38, 38, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
        backdrop-filter: blur(15px);
        border-top: 2px solid var(--secondary-yellow);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .product-nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .product-nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
    
    .product-nav-link:last-child {
        border-bottom: none;
    }
    
    .product-nav-link::before {
        display: none;
    }
    
    .product-nav-link:hover,
    .product-nav-link.active {
        color: var(--secondary-yellow) !important;
        background: rgba(255, 213, 46, 0.1);
        transform: none;
    }
}

/* Bootstrap override for active navigation links */
.navbar-nav .nav-link.active,
.navbar-nav .nav-item .nav-link.active,
.navbar .nav-link.active {
    color: var(--secondary-yellow) !important;
}

/* Desktop Product Navigation - Hide hamburger */
@media (min-width: 992px) {
    .product-hamburger-menu {
        display: none;
    }
    
    .product-nav-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .product-nav-logo {
        justify-content: flex-start;
    }
    
    .product-nav-menu {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        align-items: center;
        position: static;
        background: none;
        backdrop-filter: none;
        border: none;
        padding: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
    }
}

/* Adjust main content for product navigation */
.product-nav + .main-content {
    padding-top: 120px;
}

/* ===============================================
   5. MAIN CONTENT & CATEGORIES
   =============================================== */

 /* Promo Text Gallery Styles */
 .promo-text-gallery {
     margin-bottom: 0;
     position: relative;
     margin-left: 10px;
     margin-right: 10px;
 }
 
 .promo-background-container {
     position: relative;
     max-height: 70vh;
     overflow: hidden;
     border-radius: 10px;
 }
 
 .promo-static-bg {
     width: 100%;
     height: 70vh;
     object-fit: cover;
     object-position: center;
     display: block;
 }
 
 .promo-text-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(38, 38, 38, 0.7) 0%, rgba(26, 26, 26, 0.6) 100%);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     color: var(--primary-white);
 }
 
 .promo-title-container {
     transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     transform: translateY(0);
 }
 
 .promo-title-container.title-up {
     transform: translateY(-80px);
 }
 
 .promo-main-title {
     font-family: var(--font-titles);
     font-size: 3.5rem;
     font-weight: 900;
     text-transform: uppercase;
     letter-spacing: 2px;
     margin: 0;
     text-align: center;
     color: var(--secondary-yellow);
 }
 
 .promo-options-container {
     position: relative;
     min-height: 150px;
     display: flex;
     align-items: center;
     justify-content: center;
 }
 
 .promo-option-set {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     opacity: 0;
     transition: opacity 0.6s ease-in-out;
     text-align: center;
 }
 
 .promo-option-set.active {
     opacity: 1;
 }
 
 .promo-option-set[data-set="0"] {
     /* Title-only slide - no content needed */
 }
 
  .promo-options-line {
     display: flex;
     align-items: center;
     justify-content: center;
     flex-wrap: wrap;
     transform: translateY(20px);
     animation: slideInUp 0.8s ease-out forwards;
 }

 .promo-option-text {
     font-family: var(--font-subtitles);
     font-size: 1.4rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.8px;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
     color: var(--primary-white);
     white-space: nowrap;
 }

 .promo-product-name {
    font-family: var(--font-subtitles);
    font-weight: var(--weight-regular);
 }

 .promo-price {
    font-weight: 700;
 }

 .promo-separator {
     font-family: var(--font-subtitles);
     font-size: 1.4rem;
     font-weight: 700;
     color: var(--primary-white);
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
     margin: 0 0.5rem;
 }
 
 .promo-text-indicators {
     position: absolute;
     bottom: 20px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 10px;
 }
 
 .promo-text-indicator {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background-color: rgba(255, 255, 255, 0.6);
     border: 2px solid rgba(255, 255, 255, 0.8);
     cursor: pointer;
     transition: all 0.3s ease;
 }
 
 .promo-text-indicator.active {
     background-color: #fff;
     border-color: #fff;
 }
 
 .promo-text-indicator:hover {
     background-color: rgba(255, 255, 255, 0.8);
     transform: scale(1.1);
 }

 /* Navigation Buttons */
 .promo-nav-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background-color: rgba(0, 0, 0, 0.3);
     border: 2px solid rgba(255, 255, 255, 0.3);
     color: white;
     font-size: 1.2rem;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
     backdrop-filter: blur(10px);
     z-index: 10;
 }

 .promo-prev-btn {
     left: 20px;
 }

 .promo-next-btn {
     right: 20px;
 }

 .promo-nav-btn:hover {
     background-color: rgba(0, 0, 0, 0.5);
     border-color: rgba(255, 255, 255, 0.6);
     transform: translateY(-50%) scale(1.1);
 }

 .promo-nav-btn:active {
     transform: translateY(-50%) scale(0.95);
 }
 
  @keyframes slideInUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Large screen adjustments (lg and above - 992px+) */
 @media (min-width: 992px) {
     .promo-main-title {
         font-size: 4rem;
         letter-spacing: 2.5px;
     }
     
     .promo-option-text {
         font-size: 1.6rem;
         letter-spacing: 1px;
     }
     
     .promo-separator {
         font-size: 1.6rem;
         margin: 0 0.6rem;
     }
 }

 /* Responsive adjustments for promo text gallery */
 @media (max-width: 768px) {
     .promo-background-container {
         max-height: 50vh;
     }
     
     .promo-static-bg {
         height: 50vh;
     }
     
     .promo-title-container.title-up {
         transform: translateY(-60px);
     }
     
     .promo-main-title {
         font-size: 2.2rem;
         letter-spacing: 1.5px;
     }
     
     .promo-option-text {
         font-size: 1rem;
         letter-spacing: 0.4px;
     }
     
     .promo-separator {
         font-size: 1rem;
         margin: 0 0.3rem;
     }
     
     .promo-options-container {
         min-height: 120px;
     }
     
     .promo-text-indicators {
         bottom: 15px;
     }
     
     .promo-nav-btn {
         width: 40px;
         height: 40px;
         font-size: 1rem;
     }
     
     .promo-prev-btn {
         left: 15px;
     }
     
     .promo-next-btn {
         right: 15px;
     }
 }
 
 @media (max-width: 480px) {
     .promo-title-container.title-up {
         transform: translateY(-40px);
     }
     
     .promo-main-title {
         font-size: 1.8rem;
         letter-spacing: 1px;
     }
     
     .promo-option-text {
         font-size: 0.85rem;
         letter-spacing: 0.2px;
     }
     
     .promo-separator {
         font-size: 0.85rem;
         margin: 0 0.2rem;
     }
     
     .promo-options-container {
         min-height: 100px;
     }
     
     .promo-nav-btn {
         width: 35px;
         height: 35px;
         font-size: 0.9rem;
     }
     
     .promo-prev-btn {
         left: 10px;
     }
     
     .promo-next-btn {
         right: 10px;
     }
 }

.main-content {
    position: relative;
    z-index: 1;
    background-color: var(--primary-white);
    min-height: 100vh;
}

/* Categories Section */
.categories-section {
    padding: 0;
    background-color: var(--primary-white);
}

.categories-section .container-fluid {
    padding: 0;
    max-width: 100%;
}

.categories-section .row {
    margin: 0;
}

.categories-section .col-12,
.categories-section .col-md-6 {
    padding: 0;
}

/* Category Cards */
.category-card {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition: var(--transition-smooth);
    background-color: var(--primary-white);
    border: none;
    border-radius: 0;
}

.category-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: brightness(0.8) contrast(1.1);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
    filter: brightness(0.6) contrast(1.2);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(38, 38, 38, 0.7) 0%, rgba(26, 26, 26, 0.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--primary-white);
    transition: var(--transition-smooth);
    opacity: 0.9;
}

.category-overlay h3 {
    font-family: var(--font-titles);
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    /*text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);*/
}

.category-overlay p {
    font-family: var(--font-text);
    font-size: 1.2rem;
    font-weight: var(--weight-light);
    letter-spacing: 1px;
    opacity: 0.9;
}

.category-card:hover .category-overlay {
    background: linear-gradient(135deg, 
        rgba(88, 166, 100, 0.8) 0%, 
        rgba(99, 145, 194, 0.8) 50%, 
        rgba(255, 213, 46, 0.8) 100%);
    opacity: 1;
}

/* ===============================================
   6. PRODUCT GALLERY
   =============================================== */
.product-gallery {
    padding: 5rem 0;
    background-color: var(--primary-white);
}

.gallery-category {
    margin-bottom: 4rem;
}

.gallery-category:last-child {
    margin-bottom: 0;
}

/* Gallery Titles */
.gallery-title {
    font-family: var(--font-titles);
    font-size: 2.5rem;
    font-weight: normal;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
    box-shadow: var(--shadow-light);
}

/* Category-specific title colors */
.gallery-category:nth-child(1) .gallery-title {
    color: var(--secondary-green);
}

.gallery-category:nth-child(1) .gallery-title::after {
    background: var(--secondary-green);
}

.gallery-category:nth-child(2) .gallery-title {
    color: var(--secondary-yellow);
}

.gallery-category:nth-child(2) .gallery-title::after {
    background: var(--secondary-yellow);
}

.gallery-category:nth-child(3) .gallery-title {
    color: var(--primary-blue);
}

.gallery-category:nth-child(3) .gallery-title::after {
    background: var(--primary-blue);
}

/* Section Styles */
section {
    padding: 3rem 0;
    background-color: var(--primary-white);
}

.section-title {
    font-family: var(--font-titles);
    font-size: 2.5rem;
    font-weight: normal;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
    box-shadow: var(--shadow-light);
}

/* Category-specific section titles */
#pilchas .section-title {
    color: var(--primary-blue);
}

#pilchas .section-title::after {
    background: var(--primary-blue);
}

#pilusos .section-title {
    color: var(--primary-blue);
}

#pilusos .section-title::after {
    background: var(--primary-blue);
}

#buzos .section-title {
    color: var(--primary-blue);
}

#buzos .section-title::after {
    background: var(--primary-blue);
}

/* Product Cards */
.product-card {
    background: var(--primary-white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

/* Category-specific hover effects */
#pilchas .product-card:hover {
    box-shadow: 0 15px 35px rgba(88, 166, 100, 0.3);
}

#pilusos .product-card:hover {
    box-shadow: 0 15px 35px rgba(255, 213, 46, 0.3);
}

#buzos .product-card:hover {
    box-shadow: 0 15px 35px rgba(99, 145, 194, 0.3);
}

.product-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 0.8rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-family: var(--font-subtitles);
    font-size: 1.0rem;
    font-weight: var(--weight-regular);
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/*
.product-info p {
    font-family: var(--font-text);
    font-weight: var(--weight-light);
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}
*/

/* Product Prices */
.product-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: #000000;
}

#remeras .product-price {
    color: #000000;
}

#pilusos .product-price {
    color: #000000;
}

#buzos .product-price {
    color: #000000;
}

/* Buttons */
.ver-mas-btn {
    font-family: var(--font-subtitles);
    background: var(--primary-blue);
    color: var(--primary-white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: var(--weight-bold);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
}

.ver-mas-btn:hover {
    background: linear-gradient(135deg, #4a7ba7 0%, var(--primary-blue) 100%);
    color: var(--primary-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 145, 194, 0.4);
    text-decoration: none;
}

/* Category-specific button colors */
#pilchas .ver-mas-btn {
    background: var(--primary-blue);
}

#pilchas .ver-mas-btn:hover {
    opacity: 0.90;
    box-shadow: 0 8px 25px rgba(99, 145, 194, 0.4);
}

#pilusos .ver-mas-btn {
    background: var(--primary-blue);
}

#pilusos .ver-mas-btn:hover {
    opacity: 0.90;
    box-shadow: 0 8px 25px rgba(99, 145, 194, 0.4);
}

#buzos .ver-mas-btn {
    background: var(--primary-blue);
}

#buzos .ver-mas-btn:hover {
    opacity: 0.90;
    box-shadow: 0 8px 25px rgba(99, 145, 194, 0.4);
}

/* ===============================================
   7. BRAND SECTION
   =============================================== */
.brand-section {
    padding: 0;
    background-color: var(--primary-white);
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.brand-section .container-fluid {
    padding: 0;
    height: 100%;
}

.brand-section .row {
    margin: 0;
    height: 500px;
}

.brand-section .col-lg-6 {
    padding: 0;
    height: 100%;
}

.brand-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: brightness(1.05) contrast(1.1);
}

.brand-image:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.15);
}

.brand-content {
    position: relative;
    z-index: 2;
    background: var(--primary-white);
    padding: 4rem 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.brand-title {
    font-family: var(--font-titles);
    font-size: 3rem;
    font-weight: normal;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    text-align: left;
}

.brand-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-green) 0%, var(--secondary-yellow) 50%, var(--primary-blue) 100%);
    border-radius: 2px;
    box-shadow: var(--shadow-light);
}

.brand-description {
    font-family: var(--font-text);
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 2.5rem;
    text-align: left;
    font-weight: var(--weight-light);
}

.btn-know-more {
    font-family: var(--font-subtitles);
    background: linear-gradient(135deg, var(--primary-blue) 0%, #4a7ba7 100%);
    color: var(--primary-white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: var(--weight-bold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    display: inline-block;
    width: fit-content;
    margin: 0;
    text-decoration: none;
}

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

.btn-know-more:hover::before {
    left: 100%;
}

.btn-know-more:hover {
    background: linear-gradient(135deg, #4a7ba7 0%, var(--primary-blue) 100%);
    color: var(--primary-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 145, 194, 0.4);
    text-decoration: none;
}

/* ===============================================
   8. FOOTER STYLES
   =============================================== */
.main-footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
    color: var(--primary-white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(88, 166, 100, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(99, 145, 194, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-section {
    margin-bottom: 3rem;
}

.footer-logo {
    max-height: 80px;
    margin-bottom: 1.5rem;
    filter: brightness(1.1);
}

.footer-title {
    font-family: var(--font-subtitles);
    font-size: 1.5rem;
    font-weight: var(--weight-bold);
    color: var(--secondary-yellow);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-yellow);
    border-radius: 1px;
}

.footer-text {
    font-family: var(--font-text);
    font-weight: var(--weight-light);
    color: rgba(248, 249, 250, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-link {
    color: rgba(248, 249, 250, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: block;
    padding: 0.3rem 0;
}

.footer-link:hover {
    color: var(--secondary-yellow);
    text-decoration: none;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-white);
    text-decoration: none;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--secondary-yellow);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 213, 46, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.footer-bottom-text {
    font-family: var(--font-text);
    font-weight: var(--weight-light);
    color: rgba(248, 249, 250, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-text a {
    color: var(--secondary-yellow);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-bottom-text a:hover {
    color: var(--primary-white);
    text-decoration: underline;
}



/* Mission Cards */
.mission-card {
    background: var(--primary-white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.mission-icon i {
    font-size: 2rem;
    color: var(--primary-white);
}

.mission-card:hover .mission-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(99, 145, 194, 0.3);
}

.mission-title {
    font-family: var(--font-subtitles);
    font-size: 1.5rem;
    font-weight: var(--weight-bold);
    color: var(--primary-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-text {
    font-family: var(--font-text);
    font-weight: var(--weight-light);
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
}

/* Team Cards */
.team-card {
    background: var(--primary-white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-light);
    text-align: center;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 2rem;
}

.team-name {
    font-family: var(--font-subtitles);
    font-size: 1.3rem;
    font-weight: var(--weight-bold);
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.team-role {
    font-family: var(--font-subtitles);
    color: var(--primary-blue);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.team-description {
    font-family: var(--font-text);
    font-weight: var(--weight-light);
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Styles */
.contact-info {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--primary-white);
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-right: 1rem;
    width: 30px;
}

.contact-item h4 {
    font-family: var(--font-subtitles);
    font-size: 1.1rem;
    font-weight: var(--weight-bold);
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-family: var(--font-text);
    font-weight: var(--weight-light);
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
}

.contact-form {
    background: var(--primary-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.contact-form .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(99, 145, 194, 0.25);
}

.btn-contact {
    font-family: var(--font-subtitles);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
    color: var(--primary-white);
    border: none;
    padding: 1rem 3rem;
    border-radius: 30px;
    font-weight: var(--weight-bold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-medium);
}

.btn-contact:hover {
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-blue) 100%);
    color: var(--primary-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* ===============================================
   10. RESPONSIVE DESIGN - MOBILE FIRST
   =============================================== */

/* Mobile Styles (max-width: 576px) */
@media (max-width: 576px) {
    /* Header */
    .header-content {
        padding: 1rem;
    }
    
    .logo {
        max-height: 200px;
    }
    
    .company-phrase {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .discover-text {
        font-size: 0.8rem;
    }
    
    .discover-section {
        margin-top: 1rem;
        padding: 0.5rem;
        border-radius: 15px;
    }
    
    .discover-arrows i {
        font-size: 1.1rem;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0 1rem;
    }
    
    /* Categories */
    .category-card {
        height: 250px;
    }
    
    .category-overlay h3 {
        font-size: 1.8rem;
    }
    
    .category-overlay p {
        font-size: 1rem;
    }
    
    /* Product Gallery */
    .gallery-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    /*
    .product-card {
        margin-bottom: 0.6rem;
    }
    */
    .product-image {
        height: 250px;
    }
    
    /* Brand Section */
    .brand-image {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .brand-content {
        padding: 2rem 1.5rem;
    }
    
    .brand-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .brand-title::after {
        width: 60px;
        height: 3px;
    }
    
    .brand-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-know-more {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    /* Footer */
    .main-footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-logo {
        max-height: 60px;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 2rem;
    }
    
    .footer-bottom-text {
        font-size: 0.8rem;
    }
}

/* ===============================================
   11. RESPONSIVE DESIGN - TABLET
   =============================================== */

/* Tablet Styles (max-width: 768px) */
@media (max-width: 768px) {
    /* Header */
    .logo {
        max-height: 250px;
    }
    
    .company-phrase {
        font-size: 1.5rem;
    }
    
    .discover-text {
        font-size: 0.875rem;
    }
    
    .discover-section {
        margin-top: 1.5rem;
        padding: 0.7rem;
        border-radius: 15px;
    }
    
    .discover-arrows i {
        font-size: 1.2rem;
    }
    
    /* Navigation */
    .nav-logo {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-logo-img {
        max-height: 50px;
    }
    
    .nav-company-phrase {
        font-size: 1rem;
    }
    
    /* Categories */
    .category-card {
        height: 300px;
    }
    
    .category-overlay h3 {
        font-size: 2.2rem;
    }
    
    .category-overlay p {
        font-size: 1.1rem;
    }
    
    /* Product Gallery */
    .product-gallery {
        padding: 3rem 0;
    }
    
    .gallery-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .gallery-category {
        margin-bottom: 3rem;
    }
    
    .product-image {
        height: 280px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
    
    .btn-ver-mas {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Brand Section */
    .brand-section {
        min-height: auto;
    }
    
    .brand-section .row {
        height: auto;
        flex-direction: column;
    }
    
    .brand-section .col-lg-6 {
        height: auto;
    }
    
    .brand-image {
        height: 400px;
        margin-bottom: 2rem;
    }
    
    .brand-content {
        padding: 3rem 2rem;
        height: auto;
    }
    
    .brand-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .brand-title::after {
        width: 70px;
    }
    
    .brand-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-know-more {
        padding: 0.9rem 2.2rem;
        font-size: 0.95rem;
    }
    
    /* Footer */
    .main-footer {
        padding: 3.5rem 0 2rem;
    }
    
    .footer-section {
        margin-bottom: 2.5rem;
    }
    
    .footer-title {
        font-size: 1.4rem;
    }
    
    .footer-text {
        font-size: 0.95rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .footer-bottom-text {
        font-size: 0.85rem;
    }
    
    
}

/* ===============================================
   12. RESPONSIVE DESIGN - DESKTOP
   =============================================== */

/* Medium Desktop Fix (769px - 991px) */
@media (min-width: 769px) and (max-width: 991px) {
    .brand-section {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .brand-section .row {
        height: auto;
        flex-direction: column;
    }
    
    .brand-section .col-lg-6 {
        height: auto;
    }
    
    .brand-image {
        height: 400px;
        margin-bottom: 2rem;
    }
    
    .brand-content {
        height: auto;
        padding: 3rem 2rem;
        position: relative;
        z-index: 10;
    }
    
    .brand-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .brand-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Large Desktop (min-width: 1200px) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .logo {
        max-height: 350px;
    }
    
    .company-phrase {
        font-size: 2rem;
    }
    
    .discover-text {
        font-size: 1rem;
    }
    
    .category-card {
        height: 450px;
    }
    
    .category-overlay h3 {
        font-size: 3rem;
    }
    
    .gallery-title {
        font-size: 3rem;
    }
    
    .brand-title {
        font-size: 3.5rem;
    }
    
    .brand-description {
        font-size: 1.2rem;
    }
}

/* Extra Large Desktop (min-width: 1400px) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .main-header {
        height: 100vh;
    }
    
    .category-card {
        height: 500px;
    }
    
    .product-image {
        height: 350px;
    }
    
    .brand-section .row {
        height: 600px;
    }
    
    .brand-content {
        padding: 5rem 4rem;
    }
}

/* ===============================================
   13. PRODUCT VIEW PAGE STYLES
   =============================================== */

/* Product Gallery Styles */
.product-gallery-container {
    position: sticky;
    top: 140px;
    height: calc(100vh - 160px);
    display: flex;
    flex-direction: column;
}

.main-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    background: #f8f9fa;
}

.main-product-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    transition: var(--transition-smooth);
}

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

.thumbnail-gallery {
    margin-top: 1rem;
    flex-shrink: 0;
}

.thumbnail-image {
    width: 100%;
    height: 60px;
    object-fit: contain;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    opacity: 0.7;
    background: #f8f9fa;
    border-radius: 8px;
}

.thumbnail-image:hover,
.thumbnail-image.active {
    opacity: 1;
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

/* Product Details Styles */
.product-details {
    padding: 1rem 0;
    height: calc(100vh - 160px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-category .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: var(--primary-blue) !important;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-family: var(--font-titles);
    font-size: 2rem;
    font-weight: normal;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.product-description p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.product-price h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    font-weight: 800;
}

/* Size Selection Styles */
.size-selection h5,
.color-selection h5,
.quantity-selection h5 {
    font-family: var(--font-subtitles);
    font-weight: var(--weight-bold);
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.size-btn {
    min-width: 45px;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    font-weight: var(--weight-bold);
    transition: var(--transition-smooth);
    border: 2px solid #dee2e6;
    font-size: 0.9rem;
}

.size-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-check:checked + .size-btn {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--primary-white);
}

/* Color Selection Styles */
.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.color-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    font-weight: var(--weight-bold);
    transition: var(--transition-smooth);
    border: 2px solid #dee2e6;
    font-size: 0.9rem;
}

.color-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-check:checked + .color-btn {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--primary-white);
}

.color-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
}

/* Quantity Selection Styles */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 150px;
}

.quantity-input {
    text-align: center;
    font-weight: var(--weight-bold);
    border: 2px solid #dee2e6;
    border-radius: 8px;
}

.quantity-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(99, 145, 194, 0.25);
}

.quantity-controls .btn {
    border: 2px solid #dee2e6;
    border-radius: 8px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.quantity-controls .btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* WhatsApp Button Styles */
.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    border-radius: 15px;
    padding: 0.8rem 1.5rem;
    font-family: var(--font-subtitles);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-medium);
    font-size: 0.95rem;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

/* Product Layout Organization */
.product-info-top {
    flex-shrink: 0;
}

.product-options {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-actions {
    flex-shrink: 0;
    margin-top: auto;
}

/* Additional Info Styles */
.additional-info {
    border-top: 1px solid #dee2e6;
    padding-top: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.info-item i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* Responsive Styles for Product View */
@media (max-width: 991px) {
    .product-gallery-container {
        position: static;
        margin-bottom: 2rem;
        height: auto;
    }
    
    .main-image-container {
        height: 400px;
    }
    
    .product-details {
        height: auto;
        overflow-y: visible;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .product-price h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .main-image-container {
        height: 300px;
    }
    
    .thumbnail-image {
        height: 50px;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-price h3 {
        font-size: 1.4rem;
    }
    
    .product-description p {
        font-size: 0.9rem;
    }
    
    .size-options,
    .color-options {
        gap: 0.3rem;
    }
    
    .size-btn,
    .color-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .quantity-controls {
        max-width: 120px;
    }
    
    .quantity-controls .btn {
        width: 30px;
        height: 30px;
    }
    
    .whatsapp-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .info-item {
        font-size: 0.85rem;
    }
} 


/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: none;
    outline: none;
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    color: white !important;
    text-decoration: none !important;
}

.whatsapp-btn:focus {
    color: white !important;
    text-decoration: none !important;
    outline: none !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

@media (max-width: 767.98px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 15px;
    }
    
    .whatsapp-btn i {
        font-size: 24px;
    }
}