/* ============================================
   STANBLENDS HAIR STUDIO - Complete Stylesheet
   Theme Colors: 
   - Gold: #c5a059
   - Black: #000000 / #0a0a0a
   - Silver: #c0c0c0 / #aaaaaa
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    overflow-anchor: none;
}

/* ============================================
   TYPOGRAPHY - Mobile First Approach
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

h1 {
    font-size: 1.6rem;
}

h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

p {
    color: #cccccc;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
}

/* ============================================
   NAVIGATION BAR - Mobile First with Hamburger Menu
   ============================================ */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    background: rgba(0, 0, 0, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #c5a059;
    backdrop-filter: blur(15px);
    height: 70px;
}

@media (max-width: 767px) {
    nav {
        padding: 0 12px;
        height: 60px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 1;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

.logo h1 {
    font-size: clamp(0.75rem, 3.5vw, 1rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #c5a059);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (min-width: 768px) {
    .logo-img {
        height: 45px;
    }
    .logo h1 {
        font-size: 1.4rem;
    }
}

@media (min-width: 1024px) {
    .logo-img {
        height: 50px;
    }
    .logo h1 {
        font-size: 1.6rem;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #c5a059;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

/* Mobile Navigation - Hidden by default */
@media (max-width: 767px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        padding: 20px;
        gap: 8px;
        border-bottom: 2px solid #c5a059;
        z-index: 1000;
        box-shadow: 0 20px 40px rgba(0,0,0,0.8);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    nav ul.show {
        display: flex;
        animation: slideDown 0.3s ease-out forwards;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        font-size: 1.1rem;
        background: rgba(255,255,255,0.05);
        border-radius: 12px;
        border: 1px solid rgba(197, 160, 89, 0.1);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }

    nav ul li a::after {
        content: '→';
        color: #c5a059;
        font-size: 1.2rem;
    }

    nav ul li a.active {
        background: rgba(197, 160, 89, 0.2);
        border-color: #c5a059;
        color: #c5a059;
    }
}

/* Tablet and Desktop Navigation */
@media (min-width: 768px) {
    nav {
        justify-content: space-between;
        padding: 15px 30px;
        gap: 0;
    }
    
    .logo {
        justify-content: flex-start;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .logo-img {
        height: 45px;
    }
    
    nav ul {
        display: flex !important;
        flex-direction: row;
        position: static;
        background: transparent;
        padding: 0;
        border-bottom: none;
        gap: 15px;
    }
    
    nav ul li a {
        padding: 8px 16px;
        font-size: 0.9rem;
        display: inline-block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Desktop Navigation */
@media (min-width: 1024px) {
    nav {
        padding: 20px 40px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    nav ul {
        gap: 30px;
    }
    
    nav ul li a {
        padding: 8px 18px;
        font-size: 1rem;
    }
}

nav ul {
    list-style: none;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border-radius: 30px;
}

nav ul li a:hover {
    color: #c5a059;
    background: rgba(197, 160, 89, 0.15);
    transform: translateY(-2px);
}

nav ul li a.active {
    color: #c5a059;
    background: rgba(197, 160, 89, 0.2);
    border: 1px solid rgba(197, 160, 89, 0.5);
}

/* ============================================
   BUTTONS - Mobile First
   ============================================ */

.btn {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #c5a059, #8b6914);
    color: #000000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    text-align: center;
    width: 100%;
    max-width: 280px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
    background: linear-gradient(135deg, #d4b05e, #a07820);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #c5a059;
    color: #c5a059;
}

.btn-secondary:hover {
    background: #c5a059;
    color: #000000;
}

/* Tablet and Desktop Buttons */
@media (min-width: 768px) {
    .btn {
        padding: 12px 30px;
        font-size: 1rem;
        width: auto;
    }
}

/* ============================================
   CARDS & CONTAINERS - Mobile First
   ============================================ */

.card {
    background: linear-gradient(135deg, #111111, #0a0a0a);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #c5a059;
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.15);
}

@media (min-width: 768px) {
    .card {
        padding: 25px;
    }
}

/* ============================================
   FORM STYLES - Mobile First
   ============================================ */

input, select, textarea {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(197, 160, 89, 0.25);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem; /* Better for mobile typing */
    transition: all 0.3s ease;
    -webkit-appearance: none; /* Reset for iOS */
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #c5a059;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.15);
}

label {
    display: block;
    margin-bottom: 8px;
    color: #c5a059;
    font-weight: 600;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    input, select, textarea {
        padding: 14px 16px;
        font-size: 1rem;
    }
    
    label {
        margin-bottom: 8px;
        font-size: 0.9rem;
    }
}

/* ============================================
   FOOTER - Mobile First
   ============================================ */

footer {
    text-align: center;
    padding: 30px 16px;
    background: #0a0a0a;
    margin-top: 40px;
    border-top: 1px solid #c5a059;
}

footer p {
    color: #888888;
    font-size: 0.7rem;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.footer-links a {
    color: #c5a059;
    text-decoration: none;
    font-size: 0.7rem;
    transition: color 0.3s;
    padding: 5px 8px;
}

.footer-links a:hover {
    color: #d4b05e;
    text-decoration: underline;
}

@media (min-width: 768px) {
    footer {
        padding: 40px 20px;
        margin-top: 60px;
    }
    
    footer p {
        font-size: 0.85rem;
    }
    
    .footer-links {
        margin-top: 20px;
        gap: 20px;
    }
    
    .footer-links a {
        margin: 0 10px;
        font-size: 0.85rem;
    }
}

@media (min-width: 1024px) {
    footer p {
        font-size: 0.9rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
}

/* ============================================
   SCROLLBAR CUSTOMIZATION
   ============================================ */

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #c5a059;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4b05e;
}

@media (min-width: 768px) {
    ::-webkit-scrollbar {
        width: 8px;
    }
}

@media (min-width: 1024px) {
    ::-webkit-scrollbar {
        width: 10px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.slide-left {
    animation: slideInLeft 0.5s ease forwards;
}

.slide-right {
    animation: slideInRight 0.5s ease forwards;
}

/* ============================================
   GRID SYSTEM - Mobile First
   ============================================ */

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .grid { gap: 25px; }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid { gap: 30px; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Auto-fitting grids for brands, styles, etc. */
.brands-grid, .styles-grid, .features-grid, .goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

@media (max-width: 480px) {
    .brands-grid, .styles-grid, .features-grid, .goals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ============================================
   COMPONENTS - Shared Cards
   ============================================ */

.brand-card, .style-card, .feature, .goal-card, .stat-card {
    background: linear-gradient(145deg, #121212, #0a0a0a);
    border-radius: 20px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

.brand-card:hover, .style-card:hover, .feature:hover, .goal-card:hover, .stat-card:hover {
    transform: translateY(-5px);
    border-color: #c5a059;
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.15);
}

.brand-icon, .feature-icon, .goal-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.brand-card h3, .style-card h3, .feature h4, .goal-card h3 {
    color: #c5a059;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.brand-card p, .style-card p, .feature p, .goal-card p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ============================================
   SECTIONS - Mobile First
   ============================================ */

.section {
    padding: 40px 16px;
}

.section-dark {
    background: #0a0a0a;
}

.section-title {
    text-align: center;
    font-size: 1.4rem;
    color: #c5a059;
    margin-bottom: 25px;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 768px) {
    .section {
        padding: 60px 30px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
        white-space: normal;
    }
    
    .section-title::after {
        width: 80px;
        height: 4px;
        margin: 15px auto;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 80px 40px;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }
}

/* ============================================
   CONTAINER - Mobile First
   ============================================ */

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
}

/* ============================================
   UTILITY CLASSES - Mobile First
   ============================================ */

.text-center {
    text-align: center;
}

.text-gold {
    color: #c5a059;
}

.bg-gold {
    background: #c5a059;
}

/* Spacing Utilities */
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }

.p-20 { padding: 20px; }
.p-30 { padding: 30px; }
.p-40 { padding: 40px; }

/* Flex Utilities */
.flex {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) {
    .flex {
        flex-direction: row;
        gap: 20px;
    }
    
    .flex-center {
        flex-direction: row;
    }
    
    .flex-between {
        flex-direction: row;
        gap: 0;
    }
}

/* Hide/Show Utilities */
.hidden {
    display: none;
}

.hide-mobile {
    display: none;
}

.show-mobile {
    display: block;
}

@media (min-width: 768px) {
    .hide-mobile {
        display: block;
    }
    
    .show-mobile {
        display: none;
    }
}

/* ============================================
   LOADING SPINNER
   ============================================ */

.loader {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(197, 160, 89, 0.2);
    border-top: 3px solid #c5a059;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (min-width: 768px) {
    .loader {
        width: 50px;
        height: 50px;
    }
}

/* ============================================
   PROFESSIONAL TOAST NOTIFICATIONS
   ============================================ */

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 380px;
    width: calc(100% - 40px);
}

@media (max-width: 480px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        width: auto;
    }
}

.toast {
    background: rgba(30, 30, 35, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-left: 4px solid;
    animation: toastSlideIn 0.3s ease forwards;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: auto;
}

@keyframes toastSlideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-exit {
    animation: toastSlideOut 0.3s ease forwards;
}

@keyframes toastSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Toast Colors */
.toast-success {
    border-left-color: #27ae60;
}
.toast-success .toast-icon {
    background: rgba(39, 174, 96, 0.15);
    color: #27ae60;
}

.toast-error {
    border-left-color: #e74c3c;
}
.toast-error .toast-icon {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.toast-warning {
    border-left-color: #f39c12;
}
.toast-warning .toast-icon {
    background: rgba(243, 156, 18, 0.15);
    color: #f39c12;
}

.toast-info {
    border-left-color: #3498db;
}
.toast-info .toast-icon {
    background: rgba(52, 152, 219, 0.15);
    color: #3498db;
}

.toast-cart {
    border-left-color: #c5a059;
}
.toast-cart .toast-icon {
    background: rgba(197, 160, 89, 0.15);
    color: #c5a059;
}

/* Toast Icon */
.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Toast Content */
.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: #fff;
}

.toast-message {
    font-size: 0.8rem;
    color: #cccccc;
    line-height: 1.4;
}

/* Toast Close Button */
.toast-close {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px;
    transition: color 0.2s;
    flex-shrink: 0;
}

.toast-close:hover {
    color: #fff;
}

/* Progress Bar */
.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0 0 0 16px;
    width: 100%;
    overflow: hidden;
}

.toast-progress-bar {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #c5a059, #d4b05e);
    animation: toastProgress 3s linear forwards;
}

@keyframes toastProgress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* Toast Types specific styles */
.toast-success .toast-progress-bar {
    background: linear-gradient(90deg, #27ae60, #2ecc71);
}

.toast-error .toast-progress-bar {
    background: linear-gradient(90deg, #e74c3c, #ec7063);
}

.toast-warning .toast-progress-bar {
    background: linear-gradient(90deg, #f39c12, #f1c40f);
}

/* Toast Notification Utility */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    min-width: 300px;
    max-width: 400px;
    background: rgba(30, 30, 35, 0.95);
    backdrop-filter: blur(10px);
    border-left: 4px solid #c5a059;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.active {
    transform: translateX(0);
}

.toast-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.toast-success { border-left-color: #27ae60; }
.toast-success .toast-icon { background: rgba(39, 174, 96, 0.1); color: #27ae60; }

.toast-error { border-left-color: #e74c3c; }
.toast-error .toast-icon { background: rgba(231, 76, 60, 0.1); color: #e74c3c; }

.toast-content h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
    color: #fff;
    font-weight: 700;
}

.toast-content p {
    font-size: 0.8rem;
    margin: 0;
    color: #aaa;
}

/* ============================================
   PRODUCT / LESSON CARDS - Mobile First
   ============================================ */

.product-card, .lesson-card, .rental-card, .package-card, .branch-card {
    margin-bottom: 0;
    width: 100%;
}

.products-grid, .lessons-grid, .rentals-grid, .branches-grid, .packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px;
}

@media (min-width: 640px) {
    .products-grid, .lessons-grid, .rentals-grid, .branches-grid, .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (min-width: 1024px) {
    .products-grid, .lessons-grid, .rentals-grid, .packages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        padding: 20px;
    }
    
    .branches-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .products-grid, .lessons-grid, .rentals-grid, .packages-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   IMAGE RESPONSIVENESS
   ============================================ */

img {
    max-width: 100%;
    height: auto;
}

.product-image, .lesson-image, .rental-image, .package-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .product-image, .lesson-image, .rental-image, .package-image {
        height: 220px;
    }
}

@media (min-width: 1024px) {
    .product-image, .lesson-image, .rental-image, .package-image {
        height: 250px;
    }
}

/* ============================================
   HERO SECTION - Mobile First
   ============================================ */

.hero, .academy-hero, .shop-hero, .production-hero, .packages-hero, .contact-hero {
    padding: 40px 16px;
    text-align: center;
}

.hero h1, .academy-hero h1, .shop-hero h1, .production-hero h1, .packages-hero h1, .contact-hero h1 {
    font-size: 1.6rem;
}

.hero p, .academy-hero p, .shop-hero p, .production-hero p, .packages-hero p, .contact-hero p {
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .hero, .academy-hero, .shop-hero, .production-hero, .packages-hero, .contact-hero {
        padding: 60px 30px;
    }
    
    .hero h1, .academy-hero h1, .shop-hero h1, .production-hero h1, .packages-hero h1, .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p, .academy-hero p, .shop-hero p, .production-hero p, .packages-hero p, .contact-hero p {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .hero, .academy-hero, .shop-hero, .production-hero, .packages-hero, .contact-hero {
        padding: 80px 40px;
    }
    
    .hero h1, .academy-hero h1, .shop-hero h1, .production-hero h1, .packages-hero h1, .contact-hero h1 {
        font-size: 2.8rem;
    }
}

/* ============================================
   CATEGORY TABS - Mobile First
   ============================================ */

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
    padding: 0 16px;
}

.category-tab {
    padding: 8px 16px;
    font-size: 0.75rem;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(197, 160, 89, 0.4);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #ddd;
}

.category-tab:hover {
    border-color: #c5a059;
    color: #c5a059;
    transform: translateY(-2px);
}

.category-tab.active {
    background: linear-gradient(135deg, #c5a059, #8b6914);
    color: #000;
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(197, 160, 89, 0.3);
}

@media (min-width: 768px) {
    .category-tabs {
        gap: 12px;
        margin: 30px 0;
    }
    
    .category-tab {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
}

@media (min-width: 1024px) {
    .category-tabs {
        gap: 15px;
        margin: 40px 0;
    }
    
    .category-tab {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

/* ============================================
   CART PANEL - Mobile First
   ============================================ */

.cart-panel {
    margin: 20px 16px;
    padding: 20px;
    background: linear-gradient(145deg, #111, #0a0a0a);
    border-radius: 28px;
    border: 1px solid rgba(197, 160, 89, 0.25);
}

.cart-panel h3 {
    font-size: 1.3rem;
    color: #c5a059;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border-radius: 18px;
    margin-bottom: 12px;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: bold;
}

.cart-item-price {
    color: #c5a059;
    font-weight: bold;
}

.cart-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cart-qty-btn {
    background: rgba(197, 160, 89, 0.2);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    color: #c5a059;
    font-weight: bold;
}

.remove-item {
    background: rgba(255,68,68,0.2);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #ff6666;
    cursor: pointer;
    margin: 0 auto;
}

.cart-total {
    font-size: 1.3rem;
    text-align: center;
    padding: 20px;
    border-top: 2px solid #c5a059;
    margin-top: 15px;
    font-weight: bold;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #27ae60, #1e8449);
    padding: 15px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
}

.empty-cart {
    text-align: center;
    padding: 40px;
    color: #888;
}

@media (min-width: 768px) {
    .cart-panel {
        margin: 30px auto;
        padding: 30px;
        max-width: 90%;
    }
    
    .cart-panel h3 {
        font-size: 1.6rem;
    }
    
    .cart-item {
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }
    
    .cart-item-img {
        margin: 0;
        width: 70px;
        height: 70px;
    }
    
    .cart-quantity {
        justify-content: flex-start;
    }
    
    .remove-item {
        margin: 0;
    }
    
    .cart-total {
        text-align: right;
    }
}

@media (min-width: 1024px) {
    .cart-panel {
        max-width: 1000px;
        padding: 30px;
    }
    
    .cart-panel h3 {
        font-size: 1.8rem;
    }
}

/* ============================================
   FORM ROWS - Mobile First
   ============================================ */

.form-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .form-row {
        flex-direction: row;
        gap: 20px;
    }
    
    .form-row > * {
        flex: 1;
    }
}

/* ============================================
   SEARCH CONTAINER - Mobile First
   ============================================ */

.search-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 16px;
    margin: 20px auto;
}

.search-input {
    width: 100%;
    padding: 12px 16px;
    background: #222;
    border: 2px solid #c5a059;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
}

.search-btn {
    background: #c5a059;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    color: #000;
}

@media (min-width: 640px) {
    .search-container {
        flex-direction: row;
        max-width: 500px;
    }
}

@media (min-width: 768px) {
    .search-container {
        max-width: 600px;
        margin: 30px auto;
    }
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */

.contact-form-section {
    margin: 20px 16px;
    padding: 20px;
    background: linear-gradient(145deg, #111, #0a0a0a);
    border-radius: 24px;
    border: 1px solid rgba(197, 160, 89, 0.25);
}

.contact-form-section h2 {
    color: #c5a059;
    margin-bottom: 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .contact-form-section {
        margin: 30px;
        padding: 30px;
    }
}

@media (min-width: 1024px) {
    .contact-form-section {
        margin: 40px auto;
        padding: 35px;
        max-width: 1000px;
    }
}

/* ============================================
   PRICE SECTION
   ============================================ */

.price-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}

.price-section .product-price {
    text-align: center;
}

@media (min-width: 640px) {
    .price-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .price-section .product-price {
        text-align: left;
    }
}

/* ============================================
   QUANTITY CONTROL
   ============================================ */

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

@media (min-width: 640px) {
    .quantity-control {
        justify-content: flex-start;
    }
}

/* ============================================
   MODAL RESPONSIVENESS
   ============================================ */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    margin: 20px;
    padding: 20px;
    width: calc(100% - 40px);
    max-width: 500px;
    background: #1a1a1a;
    border-radius: 20px;
    border: 2px solid #c5a059;
}

@media (min-width: 768px) {
    .modal-content {
        margin: 30px;
        padding: 30px;
    }
}

/* ============================================
   VIDEO PREVIEW RESPONSIVENESS
   ============================================ */

.video-preview {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    cursor: pointer;
    overflow: hidden;
}

.preview-overlay span {
    font-size: 2rem;
}

.preview-overlay p {
    font-size: 0.7rem;
}

@media (min-width: 768px) {
    .preview-overlay span {
        font-size: 3rem;
    }
    
    .preview-overlay p {
        font-size: 0.85rem;
    }
}

/* ============================================
   BRANCH CARD DETAILS - Contact Page
   ============================================ */

.branch-card {
    background: linear-gradient(145deg, #121212, #0a0a0a);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.branch-card:hover {
    transform: translateY(-8px);
    border-color: #c5a059;
}

.branch-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.branch-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.branch-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #c5a059;
}

.branch-details {
    padding: 20px;
}

.info-section {
    margin-bottom: 15px;
}

.info-title {
    color: #c5a059;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.info-content {
    color: #ddd;
    font-size: 0.85rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .branch-name {
        font-size: 1.5rem;
    }
    
    .info-title {
        font-size: 1rem;
    }
    
    .info-content {
        font-size: 0.9rem;
    }
}

/* ============================================
   CHECKOUT PAGE - Mobile First
   ============================================ */

.checkout-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.order-summary {
    background: linear-gradient(145deg, #121212, #0a0a0a);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.order-summary h2, .checkout-form h2 {
    color: #c5a059;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.checkout-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

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

.checkout-item-info {
    flex: 1;
}

.checkout-item-name {
    font-weight: bold;
    font-size: 0.9rem;
}

.checkout-total {
    padding-top: 15px;
    border-top: 2px solid #c5a059;
    text-align: right;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 12px;
    margin: 8px 0;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid transparent;
}

.payment-option.selected {
    border-color: #c5a059;
    background: rgba(197, 160, 89, 0.1);
}

.payment-option input {
    width: auto;
    margin-right: 15px;
}

.bank-details {
    display: none;
    background: rgba(0,0,0,0.5);
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
}

.bank-details.active {
    display: block;
}

.bank-item {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    font-size: 0.85rem;
}

.submit-order-btn {
    width: 100%;
    background: linear-gradient(135deg, #27ae60, #1e8449);
    padding: 14px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .checkout-container {
        grid-template-columns: 1fr 1.2fr;
        gap: 40px;
        padding: 30px;
    }
    
    .order-summary {
        position: sticky;
        top: 100px;
        padding: 25px;
    }
    
    .order-summary h2, .checkout-form h2 {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .checkout-container {
        padding: 40px;
    }
}

/* ============================================
   HERO SLIDESHOW - Mobile First
   ============================================ */

.hero-slideshow {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 0.8rem;
    max-width: 90%;
}

.welcome-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .hero-slideshow {
        height: 80vh;
    }
    
    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        max-width: 700px;
    }
    
    .welcome-btn {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .hero-slideshow {
        height: 100vh;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
}

/* ============================================
   SIGNATURE STYLES GRID
   ============================================ */

.style-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.style-info {
    padding: 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.style-info h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.3rem;
}

.style-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #c5a059;
    margin: 15px 0;
}

.style-info .btn {
    margin-top: auto;
    width: 100%;
}

/* ============================================
   CART COUNTER BADGE
   ============================================ */

.cart-badge {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* ============================================
   AI CHAT ASSISTANT
   ============================================ */

.ai-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
}

.ai-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #d3d3d3; /* Light Gray */
    border: none;
    color: #000;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    position: relative;
    animation: aiShake 2s infinite ease-in-out;
}

.ai-toggle-btn::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 3px solid #ffeb3b; /* Yellow */
    border-radius: 50%;
    border-top-color: transparent;
    border-bottom-color: transparent;
    animation: aiRevolve 2s linear infinite;
    pointer-events: none;
}

@keyframes aiRevolve {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes aiShake {
    0%, 75%, 100% { transform: translateX(0); }
    80% { transform: translateX(-3px) rotate(-2deg); }
    85% { transform: translateX(3px) rotate(2deg); }
    90% { transform: translateX(-3px) rotate(-2deg); }
    95% { transform: translateX(3px) rotate(2deg); }
}

.ai-toggle-btn:hover {
    transform: scale(1.1);
    animation-play-state: paused;
}

.ai-chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: #111;
    border: 1px solid #c5a059;
    border-radius: 20px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    animation: fadeIn 0.3s ease;
}

.ai-chat-window.active {
    display: flex;
}

.ai-header {
    background: linear-gradient(135deg, #c5a059, #8b6914);
    padding: 15px;
    color: #000;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ai-message {
    max-width: 85%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.ai-message.bot {
    background: rgba(255,255,255,0.05);
    color: #ddd;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.ai-message.user {
    background: #c5a059;
    color: #000;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.ai-input-area {
    padding: 15px;
    background: #0a0a0a;
    display: flex;
    gap: 10px;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.ai-input-area input {
    flex: 1;
    padding: 10px;
    border-radius: 50px;
    background: #222;
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: white;
}

.ai-send-btn {
    background: #c5a059;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: #000;
}

@media (max-width: 480px) {
    .ai-chat-window {
        width: calc(100vw - 40px);
        height: 70vh;
        right: -10px;
    }
    .ai-chat-widget {
        bottom: 20px;
        right: 20px;
    }
    .ai-toggle-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    .ai-toggle-btn::after {
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-width: 2px;
    }
}
