/* ============================================
   SALMA TAHIR — Main Stylesheet
   ============================================ */

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --off-black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --gray: #888888;
    --light-gray: #cccccc;
    --white: #ffffff;
    --gold: #c9a84c;
    --gold-dim: rgba(201, 168, 76, 0.15);
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-primary: 'Inter', -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-gray { color: var(--gray); }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--black);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(201, 168, 76, 0.2);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-primary.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-outline.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-outline.btn-large {
    padding: 18px 48px;
    font-size: 15px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 999;
    padding: 0 20px;
    height: 72px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
}

/* Logo Image - Proper Scaling */
.nav-logo .logo-image {
    display: block;
    height: 42px;
    width: auto;
    max-height: 42px;
    object-fit: contain;
}

.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.nav-icon {
    color: var(--gray);
    font-size: 18px;
    transition: color 0.3s ease;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-icon:hover {
    color: var(--white);
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--gold);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    display: block;
    border-radius: 2px;
}

/* ============================================
   MOBILE RESPONSIVE - TABLETS (1024px and below)
   ============================================ */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 12px;
    }
    
    .nav-right {
        gap: 12px;
    }
    
    .nav-logo .logo-image {
        height: 36px;
        max-height: 36px;
    }
}

/* ============================================
   MOBILE RESPONSIVE - TABLETS (768px and below)
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .navbar {
        height: 64px;
        padding: 0 12px;
    }
    
    .nav-container {
        padding: 0 4px;
    }
    
    .nav-left {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
    }
    
    .nav-center {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .nav-right {
        flex: 0 0 auto;
        gap: 6px;
    }
    
    /* Logo smaller on mobile */
    .nav-logo .logo-image {
        height: 28px;
        max-height: 28px;
    }
    
    .nav-icon {
        font-size: 16px;
        padding: 4px;
    }
    
    .cart-count {
        font-size: 8px;
        width: 16px;
        height: 16px;
        top: -4px;
        right: -4px;
    }
    
    /* Mobile Menu */
    .nav-menu {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 20px 24px;
        gap: 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        z-index: 1000;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }
    
    .nav-menu.open {
        display: flex;
    }
    
    .nav-menu a {
        font-size: 15px;
        padding: 12px 0;
        letter-spacing: 2px;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .mobile-toggle {
        display: flex;
        margin-right: 4px;
    }
    
    .mobile-toggle span {
        width: 20px;
        height: 2px;
    }
}

/* ============================================
   MOBILE RESPONSIVE - PHONES (480px and below)
   ============================================ */
@media (max-width: 480px) {
    .navbar {
        height: 56px;
        padding: 0 8px;
    }
    
    .nav-container {
        padding: 0 2px;
    }
    
    /* Logo even smaller on phones */
    .nav-logo .logo-image {
        height: 24px;
        max-height: 24px;
    }
    
    .nav-right {
        gap: 4px;
    }
    
    .nav-icon {
        font-size: 14px;
        padding: 3px;
    }
    
    .cart-count {
        font-size: 7px;
        width: 14px;
        height: 14px;
        top: -3px;
        right: -3px;
    }
    
    .mobile-toggle span {
        width: 18px;
        height: 2px;
    }
    
    .nav-menu {
        top: 56px;
        padding: 16px 20px;
        gap: 2px;
    }
    
    .nav-menu a {
        font-size: 14px;
        padding: 10px 0;
    }
}

/* ============================================
   EXTRA SMALL PHONES (380px and below)
   ============================================ */
@media (max-width: 380px) {
    .nav-logo .logo-image {
        height: 20px;
        max-height: 20px;
    }
    
    .nav-icon {
        font-size: 12px;
        padding: 2px;
    }
    
    .nav-right {
        gap: 2px;
    }
    
    .cart-count {
        font-size: 6px;
        width: 12px;
        height: 12px;
        top: -2px;
        right: -2px;
    }
    
    .mobile-toggle span {
        width: 16px;
        height: 2px;
    }
}

/* ============================================
   REMAINING STYLES (Keep your existing styles below)
   ============================================ */

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 90%;
    max-width: 600px;
    position: relative;
}

.search-container form {
    display: flex;
    border-bottom: 2px solid var(--gray);
    padding-bottom: 8px;
}

.search-container input {
    flex: 1;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    font-weight: 300;
    padding: 12px 0;
    outline: none;
}

.search-container input::placeholder {
    color: var(--gray);
}

.search-container button {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 0 12px;
    transition: color 0.3s ease;
}

.search-container button:hover {
    color: var(--gold);
}

.search-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: var(--gray);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-close:hover {
    color: var(--white);
}

/* Video Banner */
.video-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 72px;
}

/* ... rest of your styles ... */

/* Footer */
.footer {
    background: var(--off-black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
}

/* ... rest of your styles ... */