* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #ffffff;
    --accent-blue: #3498db;
    --accent-purple: #9b59b6;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --text-muted: #95a5a6;
    --border-color: #ecf0f1;
    --bg-light: #f8f9fa;
    --discount-color: #e74c3c;
    --success-green: #27ae60;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

/* Welcome Screen */
.welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.5s ease;
    overflow: hidden;
}

.welcome-screen.active {
    display: flex;
}

.welcome-screen:not(.active) .animated-background-welcome {
    display: none;
}

/* Video Background for Welcome Screen */
.welcome-video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    /* Black and white filter with enhanced contrast */
    filter: grayscale(100%) contrast(1.2) brightness(0.8);
    opacity: 0.4;
}

/* Dark overlay for better text readability */
.welcome-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

/* Animated Background - Pinterest Style at 45° Angle */
.animated-background-welcome {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    overflow: hidden;
    opacity: 0.08;
    z-index: 1;
    filter: brightness(0.7);
}

.product-slider-line {
    display: flex;
    gap: 20px;
    white-space: nowrap;
    will-change: transform;
    position: absolute;
    height: 120px;
    transform: rotate(-45deg);
}

.product-slider-line img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.7;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Position the three slider lines */
#welcomeSlider1 {
    top: 15%;
    left: -50%;
}

#welcomeSlider2 {
    top: 45%;
    left: -50%;
}

#welcomeSlider3 {
    top: 75%;
    left: -50%;
}

.left-to-right {
    animation: scrollLeft 50s linear infinite;
}

.right-to-left {
    animation: scrollRight 50s linear infinite;
}

@keyframes scrollLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100vw);
    }
}

@keyframes scrollRight {
    from {
        transform: translateX(100vw);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Full Screen Center Content */
.welcome-center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    animation: zoomIn 0.8s ease;
}

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

.welcome-brand-title {
    font-size: 140px;
    font-weight: 900;
    letter-spacing: 18px;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3),
                 0 0 80px rgba(255, 255, 255, 0.2),
                 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.8s ease, glow 2s ease-in-out infinite alternate;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.2),
                     0 0 40px rgba(255, 255, 255, 0.1),
                     0 20px 60px rgba(0, 0, 0, 0.5);
    }
    to {
        text-shadow: 0 0 40px rgba(255, 255, 255, 0.4),
                     0 0 80px rgba(255, 255, 255, 0.3),
                     0 20px 80px rgba(0, 0, 0, 0.7);
    }
}

.welcome-brand-subtitle {
    font-size: 22px;
    color: #a0a0a0;
    margin-top: 24px;
    font-weight: 300;
    letter-spacing: 4px;
    animation: slideUp 0.8s ease 0.2s backwards;
    text-transform: uppercase;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Welcome Screen Responsive */
@media (max-width: 1024px) {
    .welcome-brand-title {
        font-size: 100px;
        letter-spacing: 12px;
    }
    
    .welcome-brand-subtitle {
        font-size: 18px;
        letter-spacing: 3px;
    }
    
    .welcome-video-background {
        /* Ensure video covers on tablets */
        min-width: 120%;
        min-height: 120%;
    }
}

@media (max-width: 768px) {
    .welcome-brand-title {
        font-size: 64px;
        letter-spacing: 8px;
    }
    
    .welcome-brand-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
        margin-top: 16px;
    }
    
    .welcome-video-background {
        /* Ensure video covers on mobile */
        min-width: 150%;
        min-height: 150%;
        opacity: 0.3;
    }
    
    /* Darker overlay on mobile for better text visibility */
    .welcome-screen::before {
        background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%);
    }
    
    .product-slider-line {
        height: 100px;
    }
    
    .product-slider-line img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .welcome-brand-title {
        font-size: 48px;
        letter-spacing: 6px;
    }
    
    .welcome-brand-subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Bottom Dialog Box */
.welcome-dialog-bottom {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    animation: slideUpFromBottom 0.8s ease 0.3s backwards;
}

@keyframes slideUpFromBottom {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.welcome-dialog {
    background: white;
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(52, 152, 219, 0.1);
    text-align: center;
    max-width: 500px;
    width: 90vw;
}

.welcome-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
    animation: pulse 2s infinite;
}

.welcome-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.feature-item i {
    font-size: 24px;
    color: var(--accent-blue);
}

.feature-item span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

.continue-btn {
    padding: 16px 50px;
    font-size: 15px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.continue-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.5);
    background: linear-gradient(135deg, #2980b9, #21618c);
}

.continue-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.continue-btn i {
    transition: transform 0.3s ease;
    font-size: 16px;
}

.continue-btn:hover i {
    transform: translateX(5px);
}

.auto-enter-text {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}

/* Old Welcome Content (hidden) */
.welcome-content {
    display: none;
}

/* Main Site */
.main-site {
    display: none;
    overflow-x: hidden;
}

.main-site.active {
    display: block;
}

.main-site .animated-background-welcome,
.main-site .product-slider {
    display: none !important;
}

/* Header */
/* Header Navigation - Facebook-like Advanced Design */
.header {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border-bottom: none;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: none;
}

@media (max-width: 768px) {
    .header {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0;
    }
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 768px) {
    .header-container {
        padding: 10px 16px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 10px 12px;
        gap: 10px;
    }
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo:hover {
    background: rgba(0, 102, 255, 0.08);
}

.brand-logo:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .brand-logo {
        gap: 8px;
        padding: 6px 8px;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        gap: 6px;
        padding: 4px 6px;
    }
}

.logo-icon {
    font-size: 44px;
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

@media (max-width: 768px) {
    .logo-icon {
        font-size: 34px;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        font-size: 30px;
    }
}

.logo-text {
    font-size: 36px; /* toned down to respect branding */
    font-weight: 900;
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 9px;
    letter-spacing: 0.5px;
    color: #65676b;
    margin-left: 6px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .logo-subtitle {
        display: none;
    }
}

.main-nav {
    display: flex;
    gap: 4px;
    flex: 1;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1024px) {
    .main-nav {
        gap: 2px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
}

.nav-link {
    color: #65676b;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 16px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    white-space: nowrap;
    position: relative;
}

@media (max-width: 1024px) {
    .nav-link {
        font-size: 14px;
        padding: 9px 12px;
    }
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    height: 3px;
    background: #0066ff;
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #0066ff;
    background: rgba(0, 102, 255, 0.08);
}

.nav-link.active {
    color: #0066ff;
    background: rgba(0, 102, 255, 0.1);
}

.nav-link.active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .header-actions {
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .header-actions {
        gap: 4px;
    }
}

.icon-btn {
    background: #f0f2f5;
    border: none;
    cursor: pointer;
    color: #050505;
    font-size: 20px;
    position: relative;
    padding: 0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .icon-btn {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .icon-btn {
        width: 46px;
        height: 46px;
        font-size: 24px;
    }
}

.icon-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
}

.icon-btn:active {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #fa3e3e;
    color: white;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    padding: 0 4px;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: #f0f2f5;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 20px;
    color: #050505;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .mobile-menu-btn {
        width: 46px;
        height: 46px;
        font-size: 24px;
    }
}

.mobile-menu-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
}

.mobile-menu-btn:active {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
}

/* Backdrop Overlay */
.backdrop-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 2000;
}

.backdrop-overlay.active {
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background-color: white;
    z-index: 3000;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-header h3 {
    font-size: 20px;
    font-weight: 600;
}

.close-mobile-menu {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
    padding: 5px;
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-menu-section {
    margin-bottom: 30px;
}

.mobile-menu-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.mobile-menu-link:hover {
    background-color: var(--bg-light);
    color: var(--accent-blue);
}

.mobile-menu-link i {
    font-size: 18px;
    width: 20px;
}

/* Cart Modal */
.circle-menu {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 22px 0;
    padding: 0 12px;
}

.circle-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0), 0 0 0 1px rgba(255,255,255,0.05);
    transition: transform 220ms cubic-bezier(.2,.9,.3,1), box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
    box-sizing: border-box;
    padding: 8px;
    overflow: hidden;
}

.circle-item:focus,
.circle-item:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(37,99,235,0.12), 0 8px 20px rgba(0,0,0,0.12);
}

.circle-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0,0,0,0.35), 0 0 0 2px rgba(255,255,255,0.15);
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

/* entrance animation */
.circle-menu .circle-item {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 320ms ease, transform 320ms ease, box-shadow 180ms ease;
}
.circle-menu.loaded .circle-item {
    opacity: 1;
    transform: translateY(0);
}
.circle-menu.loaded .circle-item:nth-child(1) { transition-delay: 0ms; }
.circle-menu.loaded .circle-item:nth-child(2) { transition-delay: 40ms; }
.circle-menu.loaded .circle-item:nth-child(3) { transition-delay: 80ms; }
.circle-menu.loaded .circle-item:nth-child(4) { transition-delay: 120ms; }
.circle-menu.loaded .circle-item:nth-child(5) { transition-delay: 160ms; }
.circle-menu.loaded .circle-item:nth-child(6) { transition-delay: 200ms; }

.circle-icon {
    font-size: 24px;
    color: #ffffff;
    display: block;
    margin-bottom: 6px;
    line-height: 1;
}

.circle-menu-bottom-image {
    width: 100%;
    margin: 20px auto;
    padding: 0;
    display: flex;
    justify-content: center;
}

.circle-menu-bottom-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.circle-label {
    font-size: 13px;
    color: #ffffff;
    padding: 4px 6px 2px;
    text-align: center;
    font-weight: 600;
    box-sizing: border-box;
    max-width: 72%;
    line-height: 1.05;
    white-space: normal;
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 768px) {
    .circle-menu {
        gap: 14px;
        margin: 16px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 12px 16px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }
    .circle-menu::-webkit-scrollbar {
        display: none; /* Chrome/Safari/Opera */
    }
    .circle-item {
        width: 78px;
        height: 78px;
        scroll-snap-align: center;
        padding: 8px;
        flex-shrink: 0;
    }
    .circle-icon {
        font-size: 22px;
        margin-bottom: 5px;
    }
    .circle-label {
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    /* very small phones: hide labels to save space */
    .circle-label { display: none; }
    .circle-item { width: 62px; height: 62px; padding: 6px; }
    .circle-icon { font-size: 18px; margin-bottom: 0; }
}

/* Active state for selected category */
.circle-item.active {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    box-shadow: 0 12px 32px rgba(0,102,255,0.4), 0 0 0 3px rgba(0,102,255,0.2);
    transform: translateY(-6px) scale(1.08);
    border-color: rgba(0,102,255,0.5);
}

/* Screen-reader only */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.cart-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 450px;
    height: 100vh;
    background-color: white;
    z-index: 2500;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

.cart-modal.active {
    right: 0;
}

.cart-modal-content {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    position: relative;
}

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cart-modal-header h2 {
    font-size: 20px;
    font-weight: 600;
}

.close-cart-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
    padding: 5px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    padding-bottom: 20px;
    max-height: calc(100vh - 200px);
}

.empty-cart {
    text-align: center;
    color: var(--text-muted);
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

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

.cart-item-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 8px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-color);
    background-color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--discount-color);
    cursor: pointer;
    padding: 5px;
    font-size: 18px;
}

.cart-modal .cart-footer {
    border-top: 2px solid var(--border-color);
    padding: 20px;
    background-color: white;
    flex-shrink: 0;
    display: none;
    flex-direction: column;
    gap: 12px;
    position: sticky;
    bottom: 0;
    z-index: 100;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

.cart-modal.active .cart-footer {
    display: flex;
}

.cart-modal .cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cart-modal.active .checkout-btn {
    width: 100%;
    padding: 16px;
    background-color: #0071dc !important;
    color: white !important;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-modal.active .checkout-btn:hover {
    background-color: #005bb5 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cart-modal.active .checkout-btn:disabled {
    background-color: #cccccc !important;
    cursor: not-allowed;
    transform: none;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    padding: 20px;
}

.search-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.search-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--primary-color);
    gap: 10px;
}

.search-input-luxury {
    flex: 1;
    border: none;
    font-size: 48px;
    font-weight: 300;
    padding: 20px 0;
    background: transparent;
    outline: none;
    color: var(--primary-color);
}

.search-input-luxury::placeholder {
    color: var(--text-muted);
}

.search-btn-luxury {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 36px;
    color: var(--primary-color);
    padding: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.search-btn-luxury:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.close-search {
    position: absolute;
    top: 40px;
    right: 60px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.close-search:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

@media (max-width: 1024px) {
    .search-input-luxury {
        font-size: 40px;
    }

    .search-btn-luxury {
        font-size: 32px;
    }

    .close-search {
        top: 30px;
        right: 40px;
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .search-overlay {
        padding: 16px;
    }

    .search-input-luxury {
        font-size: 28px;
        padding: 16px 0;
    }

    .search-btn-luxury {
        font-size: 24px;
        padding: 16px;
    }

    .close-search {
        top: 24px;
        right: 32px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .search-overlay {
        padding: 12px;
        align-items: flex-start;
        padding-top: 60px;
    }

    .search-container {
        width: 100%;
        max-width: 100%;
        border-bottom: 2px solid var(--primary-color);
    }

    .search-input-luxury {
        font-size: 18px;
        padding: 12px 0;
        font-weight: 400;
    }

    .search-btn-luxury {
        font-size: 18px;
        padding: 12px;
    }

    .close-search {
        top: 16px;
        right: 16px;
        font-size: 24px;
    }
}

/* Animated Background for Welcome Screen */
.animated-background-welcome {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.08;
    overflow: hidden;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.product-slider {
    display: flex;
    gap: 30px;
    white-space: nowrap;
    will-change: transform;
}

.product-slider img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    opacity: 0.6;
    flex-shrink: 0;
}

.left-to-right {
    animation: scrollLeft 30s linear infinite;
}

.right-to-left {
    animation: scrollRight 30s linear infinite;
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2px;
}

@media (max-width: 768px) {
    .main-content {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 8px;
    }
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 600px;
    margin: 24px auto;
    max-width: 1400px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
}

@media (max-width: 1024px) {
    .hero-carousel {
        height: 450px;
        padding: 0;
        margin: 16px auto;
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 350px;
        margin: 16px auto;
        padding: 0;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 280px;
        
        padding: 0;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        width: 100%;
    }
    
    .carousel-slide {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease;
    }
}

.carousel-container {
    position: relative;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

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

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.8);
}

.carousel-overlay {
    position: absolute;
    bottom: 50px;
    left: 50px;
    right: 50px;
    color: white;
    max-width: 550px;
}

@media (max-width: 1024px) {
    .carousel-overlay {
        bottom: 40px;
        left: 40px;
        right: 40px;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .carousel-overlay {
        bottom: 30px;
        left: 30px;
        right: 30px;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .carousel-overlay {
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: 100%;
    }
}

.carousel-overlay h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.2;
}

@media (max-width: 1024px) {
    .carousel-overlay h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }
}

@media (max-width: 768px) {
    .carousel-overlay h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-overlay h2 {
        font-size: 18px;
        margin-bottom: 8px;
    }
}

.carousel-overlay p {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 400;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .carousel-overlay p {
        font-size: 14px;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .carousel-overlay p {
        font-size: 12px;
        margin-bottom: 12px;
    }
}

.cta-btn {
    padding: 14px 36px;
    font-size: 14px;
    background-color: white;
    color: var(--primary-color);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

.carousel-btn:hover {
    background-color: white;
    transform: translateY(-50%) scale(1.1);
}

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

@media (max-width: 768px) {
    .carousel-btn.prev {
        left: 12px;
    }
}

@media (max-width: 480px) {
    .carousel-btn.prev {
        left: 8px;
    }
}

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

@media (max-width: 768px) {
    .carousel-btn.next {
        right: 12px;
    }
}

@media (max-width: 480px) {
    .carousel-btn.next {
        right: 8px;
    }
}

.carousel-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

/* ===== Sponsors Slider ===== */
.sponsor-section {
    margin: 22px 0;
    padding: 18px 20px;
    background: linear-gradient(180deg,#ffffff 0%, #fbfdff 100%);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.06);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.sponsor-header { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:12px }
.sponsor-header h2 { font-size:20px; color:var(--primary-color); margin:0 }
.sponsor-controls { display:flex; gap:8px; align-items:center }

/* Mute/Unmute button with #0066ff accent */
.sponsor-controls .icon-btn {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
    transition: all 0.3s ease;
}

.sponsor-controls .icon-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.35);
    background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
}

.sponsor-controls .icon-btn:active {
    transform: scale(0.95);
}

.sponsor-slider { 
    position:relative; 
    width:100%; 
    height:340px; 
    overflow:hidden; 
    border-radius:12px; 
    background:#f7f9fb;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: pan-y; /* Allow vertical scrolling but enable horizontal swipe detection */
}
.sponsor-slide { 
    position:absolute; 
    inset:0; 
    display:flex; 
    align-items:center; 
    justify-content:center; 
    transition: opacity 700ms cubic-bezier(.2,.9,.3,1); 
    opacity:0;
}
.sponsor-slide.active { opacity:1; z-index:5 }
.sponsor-media { width:100%; height:100%; object-fit:cover }

/* Bottom-to-top white linear gradient overlay */
.sponsor-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to top,
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.85) 8%,
        rgba(255,255,255,0.65) 18%,
        rgba(255,255,255,0.45) 28%,
        rgba(255,255,255,0.25) 40%,
        rgba(255,255,255,0.10) 55%,
        rgba(255,255,255,0.00) 75%
    );
    border-radius: 12px;
}

.sponsor-content { 
    position:absolute; 
    left:28px; 
    bottom:28px; 
    z-index:10; 
    color:#1a1a1a; 
    text-shadow: 0 2px 8px rgba(255,255,255,0.8);
    max-width:60%; 
}
.sponsor-content h3 { 
    font-size:24px; 
    margin:0 0 8px; 
    font-weight:700;
    color:#000;
    line-height: 1.2;
}
.sponsor-content p { 
    margin:0; 
    color:#333; 
    font-size:15px;
    font-weight:500;
    opacity:0.95;
}

.sponsor-visit { position:absolute; right:28px; bottom:28px; z-index:10 }

/* Visit button with #0066ff background */
.sponsor-visit .cta-btn { 
    padding: 12px 28px;
    border-radius: 999px;
    background: #0066ff;
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    text-decoration: none;
}

.sponsor-visit .cta-btn:hover {
    background: #0052cc;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
}

.sponsor-visit .cta-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .sponsor-slider { height:220px }
    .sponsor-content { left:16px; bottom:16px; max-width:58% }
    .sponsor-content h3 { font-size:18px; margin-bottom:4px }
    .sponsor-content p { font-size:13px }
    .sponsor-visit { right:16px; bottom:16px }
    .sponsor-visit .cta-btn { 
        padding: 10px 20px; 
        font-size: 14px;
    }
    .sponsor-controls .icon-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .sponsor-slider { height:200px }
    .sponsor-content { left:12px; bottom:12px; max-width:55% }
    .sponsor-content h3 { font-size:16px }
    .sponsor-content p { font-size:12px }
    .sponsor-visit { right:12px; bottom:12px }
    .sponsor-visit .cta-btn { 
        padding: 8px 16px; 
        font-size: 13px;
    }
}


.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: white;
    width: 24px;
    border-radius: 4px;
}

/* New Arrivals Section */
.new-arrivals-section {
    margin-top: 50px;
    padding: 60px 20px;
    background-color: white;
}

.new-arrivals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
}

/* Modern Arrival Card Styles */
.arrival-card {
    border-radius: 40px;
    background: linear-gradient(180deg, #7DD3C0 0%, #ffffff 60%);
    box-shadow: 0 14px 40px rgba(42,157,143,0.12);
    aspect-ratio: 2 / 3;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform 280ms cubic-bezier(.2,.9,.3,1), box-shadow 280ms ease;
    padding: 0;
    cursor: pointer;
}

/* Frosted glass overlay (bottom-to-top) */
.arrival-card::before {
    /* Replace frosted blur with a smoother white bottom-to-top linear overlay (no harsh line)
       This simply lightens the lower area to improve text contrast without heavy blur. */
    content: '';
    position: absolute;
    inset: 0; /* cover entire card */
    z-index: 1; /* sit above the background image but below textual content */
    pointer-events: none;
    /* soft white fade from bottom to top - more transparent toward the top */
    background: linear-gradient(to top,
        rgba(255,255,255,0.92) 0%,
        rgba(255,255,255,0.78) 14%,
        rgba(255,255,255,0.56) 28%,
        rgba(255,255,255,0.34) 42%,
        rgba(255,255,255,0.14) 60%,
        rgba(255,255,255,0.00) 82%
    );
    /* remove heavy backdrop blur to keep images sharp on mobile */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background 220ms ease;
    border-radius: 40px; /* match card rounding */
}

.arrival-card .arrival-media {
    flex: 0 0 70%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(125,211,192,0.06), rgba(255,255,255,0.0));
    z-index: 0; /* media sits under the glass overlay */
}

.arrival-card .arrival-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 500ms ease;
    mix-blend-mode: normal;
}

.arrival-card .arrival-body {
    flex: 1 1 auto;
    padding: 18px 16px 8px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 3; /* content should appear above the glass overlay */
}

.arrival-footer { z-index: 3; }

/* Mobile-specific adjustments to avoid button being cut off */
@media (max-width: 768px) {
    .arrival-card {
        /* allow slightly taller cards on mobile so the CTA fits comfortably */
        aspect-ratio: auto;
        min-height: 480px;
    }

    .arrival-card .arrival-media {
        flex: 0 0 66%; /* slightly smaller media block to give more room to the footer */
    }

    .arrival-footer {
        padding: 18px 18px 22px 18px;
        box-sizing: border-box;
        position: relative;
        z-index: 4; /* ensure CTA sits above the overlay */
    }

    .arrival-cta {
        width: 100%;
        max-width: 320px;
        box-sizing: border-box;
    }

    /* Ensure the grid has extra bottom padding so horizontally scrolled cards aren't clipped */
    .new-arrivals-grid {
        padding-bottom: 24px;
    }
}

.arrival-title {
    color: #000000; /* product title should be black */
    font-size: 1.05rem;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
    text-align: center;
    /* reduce text-shadow to keep title crisp */
    text-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.arrival-price {
    color: #111111;
    font-weight: 700;
    font-size: 0.95rem;
}

.arrival-footer {
    padding: 14px 16px 18px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrival-cta {
    background: rgba(0,102,255,0.06); /* subtle tint of #0066ff */
    color: #0066ff; /* button text color requested */
    border: 1px solid rgba(0,102,255,0.12);
    padding: 10px 28px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease, color 160ms ease;
    box-shadow: 0 6px 18px rgba(0,102,255,0.06);
}

.arrival-cta:hover,
.arrival-cta:focus {
    transform: translateY(-4px) scale(1.02);
    background: rgba(0,102,255,0.12);
}

.arrival-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 26px 60px rgba(42,157,143,0.18);
}

.fav-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 20;
    background: rgba(255,255,255,0.92);
    border-radius: 999px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: transform 140ms ease, background 140ms ease;
}

.fav-btn .fa-heart { color: #2A9D8F; font-size: 18px; }
.fav-btn.favorited { background: #2A9D8F; color: #fff; }
.fav-btn.favorited .fa-heart { color: #fff; }

.arrival-media.loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.04) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.2s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Ensure readability on small screens */
@media (max-width: 768px) {
    .arrival-card { border-radius: 28px; }
    .arrival-title { font-size: 1rem; }
}


/* Mobile Slideshow for New Arrivals */
@media (max-width: 768px) {
    .new-arrivals-section {
        padding: 40px 0;
        overflow: hidden;
    }
    
    .new-arrivals-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        gap: 16px;
        padding: 0 20px 20px;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }
    
    .new-arrivals-grid::-webkit-scrollbar {
        display: none; /* Chrome/Safari/Opera */
    }
    
    .new-arrivals-grid .product-card {
        flex: 0 0 75%;
        max-width: 280px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
}

@media (max-width: 480px) {
    .new-arrivals-section {
        padding: 30px 0;
    }
    
    .new-arrivals-grid {
        gap: 12px;
        padding: 0 16px 16px;
    }
    
    .new-arrivals-grid .product-card {
        flex: 0 0 85%;
        max-width: 320px;
    }
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: #2980b9;
    gap: 12px;
}

.view-all-link i {
    transition: transform 0.3s ease;
}

.view-all-link:hover i {
    transform: translateX(4px);
}

/* Products Section */
.products-section {
    margin-top: 40px;
    padding: 0 20px;
    min-height: 600px;
    display: block !important;
    visibility: visible !important;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 20px;
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 16px;
    }
}

.section-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 18px;
    }
}

.section-header h2 i {
    color:#4305de;
}

.sort-options select {
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    background-color: white;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .sort-options select {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .sort-options select {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 8px;
    }
}

.sort-options select:hover {
    border-color: var(--accent-blue);
}

.products-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 60px;
    padding: 0;
    width: 100%;
    min-height: 400px;
    visibility: visible !important;
    opacity: 1 !important;
}

@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 14px;
    }
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 12px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 20px;
    }
}

.product-card {
    background: white !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex !important;
    flex-direction: column;
    height: 100%;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 0;
}

@media (max-width: 1024px) {
    .product-card {
        border-radius: 18px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 768px) {
    .product-card {
        border-radius: 16px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }
}

@media (max-width: 480px) {
    .product-card {
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
    border-color: #d0d0d0;
    z-index: 10;
}

@media (max-width: 768px) {
    .product-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    }
}

@media (max-width: 480px) {
    .product-card:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}

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

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
    border-radius: 24px 24px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
}

/* Product Image Carousel */
.product-image-carousel {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
    border-radius: 24px 24px 0 0;
    display: block;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
}

.image-slide {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
}

.image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

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

.image-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: white;
    width: 12px;
    border-radius: 3px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Carousel Controls - Hidden (Auto-slideshow only) */
.carousel-control {
    display: none !important;
}

@media (max-width: 1024px) {
    .product-image {
        height: 180px;
        border-radius: 18px 18px 0 0;
    }
}

@media (max-width: 768px) {
    .product-image {
        height: 160px;
        border-radius: 16px 16px 0 0;
    }
}

@media (max-width: 480px) {
    .product-image {
        height: 140px;
        border-radius: 12px 12px 0 0;
    }
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    opacity: 0;
    animation: imageLoad 0.6s ease forwards;
}

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

@keyframes imageLoad {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #000;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.122);
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    width: fit-content;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.product-condition {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #27ae60;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.product-info {
    padding: 16px 16px 14px;
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .product-info {
        padding: 14px 14px 12px;
        border-radius: 18px;
    }
}

@media (max-width: 768px) {
    .product-info {
        padding: 12px 12px 10px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .product-info {
        padding: 10px 10px 8px;
        border-radius: 12px;
    }
}

.product-info h3 {
    font-size: 15px;
    margin-bottom: 6px;
    color: #1a1a1a;
    min-height: 40px;
    font-weight: 700;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    transition: color 0.2s ease;
    letter-spacing: -0.3px;
}

@media (max-width: 768px) {
    .product-info h3 {
        font-size: 13px;
        min-height: 32px;
        margin-bottom: 4px;
    }
}

@media (max-width: 480px) {
    .product-info h3 {
        font-size: 12px;
        min-height: 30px;
        margin-bottom: 3px;
    }
}

.product-info h3:hover {
    color: #000;
    text-decoration: none;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.stars {
    color: #ffa500;
    font-size: 13px;
    letter-spacing: 1px;
}

.rating-text {
    color: #888;
    font-size: 11px;
    font-weight: 500;
}

.product-prices {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

@media (max-width: 768px) {
    .product-prices {
        margin-bottom: 8px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .product-prices {
        margin-bottom: 6px;
        gap: 6px;
    }
}

.discount-price {
    font-size: 18px;
    font-weight: 800;
    color: #000;
    letter-spacing: -0.8px;
}

@media (max-width: 768px) {
    .discount-price {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .discount-price {
        font-size: 14px;
    }
}

.original-price {
    font-size: 12px;
    color: #aaa;
    text-decoration: line-through;
    font-weight: 400;
    display: inline-block;
}

@media (max-width: 480px) {
    .original-price {
        font-size: 11px;
    }
}

.discount-badge {
    background: #000;
    color: white;
    padding: 4px 8px;
    border-radius: 0;
    font-size: 10px;
    font-weight: 700;
    margin-left: auto;
    letter-spacing: 1px;
    display: inline-block;
}

.shipping-info {
    font-size: 12px;
    color: #27ae60;
    margin-top: 6px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.shipping-info i {
    font-size: 14px;
}

.tax-info {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

.product-category-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    color: #666;
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.price-details {
    display: none;
}

.savings-text {
    font-size: 13px;
    color: #27ae60;
    font-weight: 600;
    display: none;
}

.product-features {
    display: none;
}

.feature-pill {
    display: none;
}

.feature-pill i {
    display: none;
}

.stock-badge {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

.stock-badge i {
    color: #27ae60;
}

.out-of-stock {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.out-of-stock i {
    color: #e74c3c;
}

/* Product Quick Actions */
.product-quick-actions {
    position: static;
    display: flex;
    gap: 12px;
    padding: 12px;
    background: white;
    border-top: 1px solid #f0f0f0;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: auto;
    z-index: 15;
}

@media (max-width: 1024px) {
    .product-quick-actions {
        bottom: 16px;
        left: 16px;
        right: 16px;
        gap: 10px;
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .product-quick-actions {
        bottom: 12px;
        left: 12px;
        right: 12px;
        gap: 8px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .product-quick-actions {
        position: static;
        display: flex;
        gap: 8px;
        padding: 12px;
        background: white;
        border-top: 1px solid #f0f0f0;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: auto;
    }
}

.product-card:hover .product-quick-actions {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.quick-add-btn {
    flex: 1;
    padding: 12px 16px;
    background: #000;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 44px;
}

@media (max-width: 1024px) {
    .quick-add-btn {
        padding: 10px 14px;
        font-size: 12px;
        border-radius: 20px;
        min-height: 40px;
    }
}

@media (max-width: 768px) {
    .quick-add-btn {
        padding: 10px 12px;
        font-size: 12px;
        border-radius: 18px;
        min-height: 40px;
    }
}

@media (max-width: 480px) {
    .quick-add-btn {
        padding: 12px 12px;
        font-size: 13px;
        border-radius: 8px;
        flex: 1;
        min-height: 44px;
    }
}

.quick-add-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
    .quick-add-btn:hover {
        transform: scale(0.98);
    }
}

.quick-view-btn {
    width: 50px;
    height: 50px;
    padding: 0;
    background: white;
    color: #333;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
    .quick-view-btn {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .quick-view-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .quick-view-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
        flex: 0 0 40px;
    }
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-primary {
    flex: 1;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    transition: all 0.4s ease;
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    color: var(--primary-color);
}

.btn-secondary {
    padding: 15px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    transition: all 0.4s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ===== CHECKOUT FORM STYLES ===== */

/* Full-Screen Checkout Modal */
/* ===== NIKE-STYLE FULL-SCREEN CHECKOUT ===== */
.checkout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 20000;
    overflow: hidden;
}

.checkout-modal.active {
    display: block;
    animation: slideInCheckout 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.checkout-full-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
}

/* Sticky Header */
.checkout-sticky-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.checkout-back-btn {
    background: none;
    border: none;
    font-size: 22px;
    color: #111;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.checkout-back-btn:hover {
    background: #f5f5f5;
}

.checkout-logo h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.5px;
}

/* Main Content Area */
.checkout-main-content {
    flex: 1;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 1024px) {
    .checkout-main-content {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }
}

/* Left: Form Wrapper */
.checkout-form-wrapper {
    padding: 48px 64px;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .checkout-form-wrapper {
        padding: 32px 20px;
        overflow-y: visible;
        order: 2;
    }
}

.checkout-form-inner {
    max-width: 600px;
}

.checkout-main-title {
    font-size: 36px;
    font-weight: 500;
    color: #111;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.checkout-subtitle {
    font-size: 16px;
    color: #757575;
    margin: 0 0 40px 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .checkout-main-title {
        font-size: 28px;
    }
    .checkout-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }
}

/* Nike Form Sections */
.nike-form-section {
    margin-bottom: 36px;
}

.nike-section-title {
    font-size: 20px;
    font-weight: 500;
    color: #111;
    margin: 0 0 20px 0;
    letter-spacing: -0.2px;
}

.nike-form-group {
    margin-bottom: 16px;
}

.nike-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #757575;
    margin-bottom: 8px;
}

.nike-input,
.nike-textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.2s;
    background: #fff;
    color: #111;
}

.nike-input::placeholder,
.nike-textarea::placeholder {
    color: #b3b3b3;
}

.nike-input:focus,
.nike-textarea:focus {
    outline: none;
    border-color: #111;
}

.nike-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.nike-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 600px) {
    .nike-form-row {
        grid-template-columns: 1fr;
    }
}

/* Terms & Conditions Section */
.nike-terms-section {
    margin: 32px 0 24px 0;
}

.nike-terms-box {
    background: rgba(0, 102, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.nike-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.nike-checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    cursor: pointer;
    margin-top: 2px;
    accent-color: #0066ff;
}

.nike-terms-label {
    font-size: 13px;
    line-height: 1.6;
    color: #111;
    cursor: pointer;
    user-select: none;
}

.nike-terms-label strong {
    font-weight: 600;
}

/* Submit Button */
.nike-checkout-btn {
    width: 100%;
    padding: 18px 24px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.nike-checkout-btn:hover {
    background: #333;
    transform: scale(1.01);
}

.nike-checkout-btn:active {
    transform: scale(0.98);
}

.nike-checkout-btn i {
    font-size: 20px;
}

/* Right: Order Summary Sidebar */
.checkout-summary-sidebar {
    background: #fff;
    border-left: 1px solid rgba(0, 102, 255, 0.2);
    overflow-y: auto;
}

@media (max-width: 1024px) {
    .checkout-summary-sidebar {
        border-left: none;
        border-top: 1px solid rgba(0, 102, 255, 0.2);
        border-bottom: 1px solid rgba(0, 102, 255, 0.2);
        overflow-y: visible;
        order: 1;
    }
    
    .checkout-summary-sticky {
        padding: 24px 20px;
        position: static;
    }
}

.checkout-summary-sticky {
    position: sticky;
    top: 0;
    padding: 48px 32px;
}

.summary-title {
    font-size: 20px;
    font-weight: 500;
    color: #111;
    margin: 0 0 24px 0;
    letter-spacing: -0.2px;
}

/* Nike Order Summary */
.nike-order-summary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nike-summary-product {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 102, 255, 0.15);
}

.nike-summary-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.nike-summary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nike-summary-details {
    flex: 1;
}

.nike-product-name {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.nike-product-meta {
    font-size: 13px;
    color: #757575;
    margin: 4px 0;
}

.nike-product-price {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    margin-top: 8px;
}

.nike-summary-divider {
    height: 1px;
    background: rgba(0, 102, 255, 0.15);
    margin: 4px 0;
}

.nike-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: #111;
    padding: 4px 0;
}

.nike-free-delivery {
    color: #0066ff;
    font-weight: 500;
    background: rgba(0, 102, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

.nike-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    color: #111;
    padding-top: 12px;
}

@media (max-width: 768px) {
    .checkout-sticky-header {
        padding: 12px 16px;
    }
    
    .checkout-logo h2 {
        font-size: 18px;
    }
}

/* Legacy checkout summary styles (deprecated) */
@media (max-width: 768px) {
    .checkout-summary-section h3 {
        margin: 0 0 12px 0;
        font-size: 13px;
        letter-spacing: 0.5px;
    }
}

.order-summary-box {
    background: white;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
}

.summary-item {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f5f5f5;
}

.summary-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.summary-item-name {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.summary-item-price {
    font-size: 12px;
    color: #666;
}

.summary-item-qty {
    font-size: 12px;
    color: #999;
}

.order-total {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid #25d366;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-total-label {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.order-total-amount {
    font-size: 18px;
    font-weight: 700;
    color: #25d366;
}

/* Privacy Policy Modal */
.privacy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 25000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.privacy-modal.active {
    display: flex;
}

.privacy-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    animation: popIn 0.3s ease;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.privacy-modal-header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 20px;
    border-bottom: 3px solid #25d366;
}

.privacy-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.privacy-modal-body {
    padding: 24px;
}

.privacy-checkbox-group {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.privacy-checkbox-group input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #25d366;
    flex-shrink: 0;
}

.privacy-label {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    cursor: pointer;
}

.privacy-modal-footer {
    padding: 16px 24px;
    background: #f9f9f9;
    border-top: 1px solid #e8e8e8;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-privacy-cancel,
.btn-privacy-buy {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-privacy-cancel {
    background: #e8e8e8;
    color: #333;
}

.btn-privacy-cancel:hover {
    background: #ddd;
}

.btn-privacy-buy {
    background: #25d366;
    color: white;
}

.btn-privacy-buy:hover:not(:disabled) {
    background: #20a856;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-privacy-buy:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
}

/* ===== PRODUCT MODAL STYLES ===== */

/* Base Modal Container */
#productModal.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
    animation: fadeIn 0.3s ease;
    overflow: hidden;
}

#productModal.modal.active {
    display: flex !important;
}

@media (max-width: 768px) {
    #productModal.modal {
        padding: 0;
        align-items: flex-end;
        overflow: hidden;
        background: rgba(0, 0, 0, 0.8);
    }
}

.product-modal-pro {
    display: flex !important;
    flex-direction: column;
    width: 90%;
    max-width: 1200px;
    height: 85vh;
    max-height: 850px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

@media (max-width: 768px) {
    .product-modal-pro {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: none;
        border-radius: 20px 20px 0 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
}

.modal-container-pro {
    display: flex;
    width: 100%;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    .modal-container-pro {
        flex-direction: column;
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
    }
}

/* Gallery Section - LEFT SIDE (No Scroll) */
.modal-gallery-section {
    width: 55%;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-right: 1px solid #e5e5e5;
    overflow: visible;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .modal-gallery-section {
        width: 100%;
        height: auto;
        max-height: 50vh;
        min-height: 350px;
        padding: 12px;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        flex-shrink: 0;
        background: #fafafa;
        overflow: visible;
    }
}

.gallery-main-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex: 1;
}

.gallery-main {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    max-height: 520px;
    padding: 20px;
}

.gallery-main img,
.gallery-main video {
    max-width: 100%;
    max-height: 100%;
   
    height: 100%;
    object-fit: contain;
    border-radius: 9px;
}

@media (max-width: 768px) {
    .gallery-main-wrapper {
        max-height: none;
        height: calc(100% - 90px);
        margin-bottom: 8px;
    }
    
    .gallery-main {
        max-height: none;
        height: 100%;
        padding: 4px;
        background: #ffffff;
    }
    
    .gallery-main img,
    .gallery-main video {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

/* Custom Video Player */
.custom-video-player {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 9px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-video-player video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 15px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.progress-container {
    width: 100%;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #fff;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

.progress-bar:hover .progress-fill {
    background: #0084ff;
}

.controls-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
}

.play-pause-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
}

.play-pause-btn:hover {
    transform: scale(1.2);
    color: #0084ff;
}

.time-display {
    color: white;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Courier New', monospace;
    min-width: 70px;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gallery-nav-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-nav-btn.prev {
    left: 8px;
}

.gallery-nav-btn.next {
    right: 8px;
}

@media (max-width: 768px) {
    .gallery-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .gallery-nav-btn.prev {
        left: 4px;
    }
    
    .gallery-nav-btn.next {
        right: 4px;
    }
}

.gallery-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    justify-content: flex-start;
    overflow: visible;
    padding: 15px;
}

.media-thumb {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    overflow: hidden;
    flex-shrink: 0;
    background: #fafafa;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.media-thumb:hover {
    border-color: #666;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.media-thumb.active {
    border-color: #0071e3;
    box-shadow: 0 0 0 1px #0071e3, 0 2px 8px rgba(0, 113, 227, 0.3);
}

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

@media (max-width: 768px) {
    .gallery-thumbnails {
        gap: 6px;
        padding: 6px 2px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: thin;
    }
    
    .gallery-thumbnails::-webkit-scrollbar {
        height: 3px;
    }
    
    .gallery-thumbnails::-webkit-scrollbar-track {
        background: #f5f5f5;
    }
    
    .gallery-thumbnails::-webkit-scrollbar-thumb {
        background: #d0d0d0;
        border-radius: 2px;
    }
    
    .media-thumb {
        width: 50px;
        height: 50px;
        border-radius: 4px;
    }
}

/* Details Section - RIGHT SIDE */
.modal-details-pro {
    width: 45%;
    display: flex;
    flex-direction: column;
    background: white;
    position: relative;
    overflow: visible;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .modal-details-pro {
        width: 100%;
        height: auto;
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow: visible;
    }
}

/* Product header inside scrollable area */

/* Rating Section at Bottom (Walmart Style) */
.rating-section-bottom {
    padding: 16px 0;
    border-top: 1px solid #e5e5e5;
    margin-top: 16px;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-display .stars {
    color: #ffa500;
    font-size: 14px;
    letter-spacing: 1px;
}

.rating-display .review-count {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .rating-section-bottom {
        padding: 12px 0;
        margin-top: 12px;
    }
    
    .rating-display .stars {
        font-size: 13px;
    }
    
    .rating-display .review-count {
        font-size: 12px;
    }
}

.product-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.4;
    letter-spacing: -0.4px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.current-price {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.5px;
}

.original-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.discount-badge {
    background: #e31c3d;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .product-title {
        font-size: 18px;
        font-weight: 600;
        margin: 0 0 10px 0;
        line-height: 1.35;
    }
    
    .current-price {
        font-size: 24px;
    }
    
    .original-price {
        font-size: 14px;
    }
    
    .discount-badge {
        font-size: 11px;
        padding: 3px 6px;
    }
}

.details-scrollable {
    flex: 1;
    overflow: visible;
    padding: 24px 28px 20px;
}

@media (max-width: 768px) {
    .details-scrollable {
        padding: 14px 16px 16px;
        flex: 1;
        overflow: visible;
    }
}

.details-scrollable::-webkit-scrollbar {
    width: 6px;
}

.details-scrollable::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.details-scrollable::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.details-scrollable::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Smooth scroll behavior */
.details-scrollable {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.gallery-main {
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.description-section {
    margin-top: 0;
    margin-bottom: 20px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    letter-spacing: -0.2px;
}

.product-description {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

.divider-line {
    height: 1px;
    background: #e5e5e5;
    margin: 20px 0;
}

.options-section {
    margin-bottom: 20px;
}

.option-group-pro {
    margin-bottom: 16px;
}

.option-header {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .product-description {
        font-size: 12px;
        line-height: 1.45;
        margin-bottom: 14px;
    }
    
    .divider-line {
        margin: 14px 0;
    }
    
    .options-section {
        margin-bottom: 16px;
    }
    
    .option-group-pro {
        margin-bottom: 14px;
    }
    
    .option-header {
        margin-bottom: 8px;
    }
}

.option-header label {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: none;
    letter-spacing: 0;
}

.size-grid,
.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(55px, 1fr));
    gap: 8px;
    padding: 4px;
}

.size-option {
    padding: 8px 6px;
    text-align: center;
    border: 1.5px solid #d0d0d0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    width: 100%;
    font-weight: 600;
    transition: all 0.2s ease;
    background: white;
    color: #1a1a1a;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
}

.size-option:hover {
    border-color: #666;
    background: #fafafa;
}

.size-option.selected {
    border-color: #0071e3;
    background: #0071e3;
    color: white;
}

.color-option {
    width: 50px;
    height: 50px;
    border-radius: 9px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.color-option:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.color-option.selected {
    border-color: #000;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border: 1.5px solid #d0d0d0;
    border-radius: 6px;
    overflow: hidden;
}

.qty-decrease,
.qty-increase {
    width: 36px;
    height: 36px;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 16px;
    color: #1a1a1a;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.qty-decrease:hover,
.qty-increase:hover {
    background: #f5f5f5;
}

.qty-decrease:active,
.qty-increase:active {
    background: #e8e8e8;
}

#quantity {
    width: 45px;
    height: 36px;
    border: none;
    border-left: 1.5px solid #d0d0d0;
    border-right: 1.5px solid #d0d0d0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    background: white;
    color: #1a1a1a;
}

#quantity::-webkit-outer-spin-button,
#quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.benefits-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 14px;
    background: #f7f7f7;
    border-radius: 8px;
    margin-top: 14px;
}

.benefit-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.benefit-item i {
    font-size: 16px;
    color: #0071e3;
    margin-top: 2px;
    min-width: 18px;
}

.benefit-title {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.benefit-desc {
    font-size: 11px;
    color: #666;
    margin: 2px 0 0 0;
}

@media (max-width: 768px) {
    .benefits-section {
        gap: 8px;
        padding: 10px 12px;
        margin-top: 12px;
    }
    
    .benefit-item {
        gap: 8px;
    }
    
    .benefit-item i {
        font-size: 14px;
        min-width: 16px;
    }
    
    .benefit-title {
        font-size: 11px;
    }
    
    .benefit-desc {
        font-size: 10px;
    }
}

/* Action Buttons (Scrollable with Content) */
.action-buttons-scrollable {
    display: flex;
    gap: 12px;
    padding: 20px 0 0;
    margin-top: 24px;
    border-top: 1px solid #e5e5e5;
}

/* Add to Bag Button (Primary) */
.btn-add-to-bag {
    flex: 1;
    padding: 15px 24px;
    border: 2px solid #1a1a1a;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    color: #1a1a1a;
}

.btn-add-to-bag:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-add-to-bag:active {
    transform: translateY(0);
}

/* Buy Now Button (Secondary - More Prominent) */
.btn-buy-now {
    flex: 1;
    padding: 15px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #0071dc 0%, #005bb5 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 113, 220, 0.3);
}

.btn-buy-now:hover {
    background: linear-gradient(135deg, #005bb5 0%, #004a94 100%);
    box-shadow: 0 6px 20px rgba(0, 113, 220, 0.4);
    transform: translateY(-1px);
}

.btn-buy-now:active {
    transform: translateY(0);
}

/* Keep these for backward compatibility with other parts */
.btn-secondary {
    background: white;
    color: #1a1a1a;
    border: 1.5px solid #d0d0d0;
    padding: 13px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #f7f7f7;
    border-color: #999;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
    padding: 13px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-whatsapp:hover {
    background: #22c55e;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .description-section {
        margin-bottom: 14px;
    }
    
    .section-title {
        font-size: 14px;
        margin: 0 0 8px 0;
    }
    
    .product-description {
        font-size: 12px;
        line-height: 1.55;
        margin: 0;
    }
    
    .action-buttons-scrollable {
        gap: 10px;
        padding: 16px 0 0;
        margin-top: 20px;
    }
    
    .btn-add-to-bag,
    .btn-buy-now {
        padding: 13px 16px;
        font-size: 14px;
        border-radius: 50px;
    }
    
    .btn-add-to-bag i,
    .btn-buy-now i {
        font-size: 14px;
    }
}

.modal-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .modal-close-btn {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

.modal-product-name {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 12px 0;
    line-height: 1.4;
}

.modal-price-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.modal-price {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
}

.modal-original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.modal-discount {
    background: #000;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.modal-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.modal-divider {
    height: 1px;
    background: #e5e5e5;
    margin: 16px 0;
}

.modal-options-container {
    margin-bottom: 24px;
}

.option-group {
    margin-bottom: 16px;
}

.option-group label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.size-options,
.color-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 8px;
}

.size-option,
.color-option {
    padding: 8px;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    cursor: pointer;
    background: white;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.2s ease;
    text-align: center;
    min-width: 45px;
}

.size-option:hover {
    border-color: #333;
    background: #f5f5f5;
}

.size-option.selected {
    border-color: #000;
    background: #000;
    color: white;
}

.color-option {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 50%;
}

.quantity-controls {
    display: inline-flex;
    align-items: center;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.quantity-controls button {
    width: 36px;
    height: 36px;
    border: none;
    background: white;
    color: #333;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.quantity-controls button:hover {
    background: #f5f5f5;
}

.quantity-controls input {
    width: 45px;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    background: white;
}

/* Related Products */
.modal-related-section {
    margin-top: 20px;
}

.modal-related-section h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.related-products-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
}

/* Sticky Action Button */
.modal-actions-sticky {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: white;
    border-top: 1px solid #e5e5e5;
    z-index: 100;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.modal-btn-primary {
    flex: 1;
    padding: 14px 20px;
    background: #0066ff;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
}

.modal-btn-primary:hover {
    background: #0052cc;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.4);
    transform: translateY(-2px);
}

.modal-btn-secondary {
    flex: 0 0 auto;
    padding: 14px 16px;
    background: white;
    color: #333;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 110px;
}

.modal-btn-secondary:hover {
    border-color: #333;
    background: #f5f5f5;
    color: #000;
}

.modal-btn-secondary.active {
    border-color: #e74c3c;
    color: #e74c3c;
    background: #ffe8e3;
}

.modal-btn-whatsapp {
    flex: 1;
    padding: 14px 20px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
}

.modal-btn-whatsapp:hover {
    background: #1ba85f;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.close-modal,
.close-modal-modern {
    position: absolute;
    right: 24px;
    top: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    z-index: 2002;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.close-modal:hover,
.close-modal-modern:hover {
    background: #000;
    color: white;
    transform: rotate(90deg) scale(1.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

@keyframes slideUpScale {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* ===== PRODUCT MEDIA & GALLERY STYLES ===== */

/* Media gallery layout wrapper */
.media-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.product-media-slider {
    position: relative;
    width: 100%;
}

.main-media {
    width: 100%;
    height: 550px;
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    background: #f9f9f9;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.main-media:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.main-media img,
.main-media video {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    background: transparent;
}

.media-thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 8px 0;
    justify-content: center;
}

.media-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.media-thumbnails::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}

.media-thumbnails::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

.media-thumbnails::-webkit-scrollbar-thumb:hover {
    background: #003d7a;
}

.media-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    flex-shrink: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.media-thumb:hover {
    border-color: #0053a0;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 83, 160, 0.3);
}

.media-thumb.active {
    border-color: #0053a0;
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 83, 160, 0.4);
}

.media-thumb img,
.media-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OLD MODAL STYLES REMOVED - Using new checkout system instead */

.product-rating-modal {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
}

.product-rating-modal .stars {
    color: #000;
    font-size: 18px;
    letter-spacing: 2px;
}

.product-rating-modal .rating-text {
    color: #666;
    font-size: 15px;
    font-weight: 500;
}

.product-price-modal {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
}

.product-price-modal .discount-price {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.5px;
}

.product-price-modal .original-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.product-price-modal .discount-badge {
    background: #000;
    color: white;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    margin-left: auto;
    letter-spacing: 1px;
}

/* Modal Description Section */
.modal-description-section {
    padding: 16px 0;
}

.product-description {
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
    font-size: 15px;
    white-space: pre-line;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-description strong {
    color: #2d3748;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

/* Modal Divider */
.modal-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #e5e5e5, transparent);
    margin: 8px 0;
}

/* Modal Options Section */
.modal-options-section {
    padding: 16px 0;
}

.product-options {
    margin-bottom: 20px;
}

.option-group {
    margin-bottom: 24px;
}

.option-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
    color: #1a1a1a;
}

.option-group label i {
    color: #0053a0;
    font-size: 14px;
}

.size-options,
.color-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 10px;
}

.size-option,
.color-option {
    padding: 10px 8px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    width: 100%;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    background: white;
    color: #333;
    font-size: 14px;
    min-width: 50px;
    text-align: center;
}

.size-option:hover,
.color-option:hover {
    border-color: #000;
    background: #fafafa;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.size-option.selected,
.color-option.selected {
    border-color: #000;
    background: #000;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    position: relative;
}

.color-option.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.quantity-selector {
    margin: 0;
}

.quantity-selector label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
    color: #1a1a1a;
}

.quantity-selector label i {
    color: #0053a0;
    font-size: 14px;
}

.quantity-controls {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quantity-controls button {
    width: 44px;
    height: 44px;
    border: none;
    background: white;
    color: #333;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.25s;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-controls button:hover {
    background: #000;
    color: white;
    transform: scale(1.05);
}

.quantity-controls button.minus {
    border-right: 2px solid #e5e5e5;
}

.quantity-controls button.plus {
    border-left: 2px solid #e5e5e5;
}

.quantity-controls input {
    width: 65px;
    text-align: center;
    border: none;
    padding: 0;
    font-size: 17px;
    font-weight: 700;
    background: transparent;
    color: #1a1a1a;
    outline: none;
}

/* Modal Actions Section */
.modal-actions-section {
    padding: 24px 0 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

/* Professional Action Buttons */
.add-to-cart-btn,
.buy-now-btn,
.whatsapp-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn {
    background: #000;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.add-to-cart-btn:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.buy-now-btn {
    background: #000;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: none;
}

.buy-now-btn:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.add-to-cart-btn i {
    font-size: 18px;
}

.whatsapp-btn {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
    background: #20bf55;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.add-to-cart-btn i,
.buy-now-btn i,
.whatsapp-btn i {
    font-size: 18px;
}

/* Sticky Actions inside modal (esp. mobile) */
.sticky-actions {
    position: sticky;
    bottom: 0;
    background: white;
    z-index: 10;
}

@media (max-width: 768px) {
    .sticky-actions {
        background: linear-gradient(to top, rgba(255,255,255,1) 85%, rgba(255,255,255,0.95) 95%, transparent);
        backdrop-filter: blur(8px);
        padding-top: 16px;
        margin-top: 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    }
}

/* Desktop vertical thumbnails layout */
@media (min-width: 1024px) {
    .media-gallery {
        display: grid;
        grid-template-columns: 90px 1fr;
        gap: 16px;
        align-items: start;
    }
    
    .media-thumbnails {
        display: flex;
        flex-direction: column;
        gap: 12px;
        overflow-y: auto;
        overflow-x: hidden;
        max-height: 450px;
        padding-right: 4px;
    }
    
    .media-thumbnails::-webkit-scrollbar {
        width: 4px;
    }
    
    .media-thumbnails::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 2px;
    }
    
    .media-thumb {
        width: 80px;
        height: 80px;
        border-radius: 8px;
        flex-shrink: 0;
    }
    
    .main-media {
        margin-bottom: 0;
        height: 450px;
    }
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
    .product-modal-pro {
        width: 96%;
        height: 90vh;
        max-width: 1200px;
    }

    .modal-gallery-section {
        width: 56%;
        padding: 12px 16px;
    }

    .modal-details-pro {
        width: 44%;
    }

    .gallery-main-wrapper {
        max-height: 480px;
    }

    .product-title {
        font-size: 20px;
        margin: 0 0 12px 0;
    }

    .current-price {
        font-size: 26px;
    }

    .details-scrollable {
        padding: 16px 18px 18px;
    }

    .action-buttons-scrollable {
        gap: 10px;
        padding: 18px 0 0;
    }

    .btn-add-to-bag,
    .btn-buy-now {
        padding: 13px 18px;
        font-size: 14px;
    }

    .size-grid,
    .color-grid {
        grid-template-columns: repeat(auto-fill, minmax(52px, 1fr));
        gap: 9px;
        padding: 6px;
    }
}

@media (max-width: 768px) {
    .product-modal-pro {
        width: 100%;
        height: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        display: flex;
        flex-direction: column;
    }

    .modal-container-pro {
        flex-direction: column;
        height: 100%;
        overflow: hidden;
    }

    .modal-gallery-section {
        width: 100%;
        height: 55vh;
        min-height: 400px;
        padding: 8px 12px;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        flex-shrink: 0;
        background: #fafafa;
    }

    .gallery-main-wrapper {
        max-height: none;
        height: calc(100% - 90px);
        margin-bottom: 8px;
        flex: 1;
    }

    .gallery-main {
        border-radius: 6px;
        max-height: none;
        height: 100%;
    }

    .gallery-thumbnails {
        width: 100%;
        gap: 6px;
        padding: 6px 2px;
    }

    .media-thumb {
        width: 50px;
        height: 50px;
        border-radius: 4px;
    }

    .modal-details-pro {
        width: 100%;
        height: auto;
        overflow: visible;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .product-header-info {
        padding: 16px 18px;
        border-bottom: 1px solid #e8e8e8;
        flex-shrink: 0;
    }

    .rating-display {
        margin-bottom: 8px;
    }

    .product-title {
        font-size: 20px;
        margin: 6px 0 12px 0;
        line-height: 1.3;
    }

    .price-display {
        gap: 10px;
    }

    .current-price {
        font-size: 24px;
    }

    .original-price {
        font-size: 15px;
    }

    .discount-badge {
        padding: 3px 10px;
        font-size: 12px;
    }

    .details-scrollable {
        padding: 14px 18px;
        flex: 1;
        overflow-y: visible;
        overflow-x: hidden;
    }

    .product-description {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .divider-line {
        margin: 14px 0;
    }

    .option-group-pro {
        margin-bottom: 16px;
    }

    .option-header label {
        font-size: 11px;
        font-weight: 600;
    }

    .size-grid,
    .color-grid {
        grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
        gap: 6px;
        padding: 3px;
    }

    .size-option {
        padding: 7px 5px;
        font-size: 11px;
        border-radius: 5px;
        min-height: 32px;
    }

    .color-option {
        width: 44px;
        height: 44px;
    }

    .quantity-selector {
        width: fit-content;
        height: 36px;
    }

    .qty-decrease,
    .qty-increase {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    #quantity {
        width: 50px;
        height: 38px;
        font-size: 14px;
    }

    .benefits-section {
        padding: 12px;
        margin-top: 12px;
        gap: 10px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 12px;
    }

    .benefit-item {
        gap: 8px;
        font-size: 12px;
    }

    .benefit-item i {
        font-size: 16px;
        margin-top: 1px;
    }

    .benefit-title {
        font-size: 12px;
        margin: 0;
    }

    .benefit-desc {
        font-size: 11px;
        margin: 2px 0 0 0;
        color: #666;
    }

    .action-buttons-pro {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 14px 16px;
        border-top: 1px solid #e8e8e8;
    }

    .btn-primary,
    .btn-secondary,
    .btn-whatsapp {
        padding: 11px 14px;
        font-size: 12px;
        border-radius: 9px;
    }

    .btn-primary i,
    .btn-secondary i,
    .btn-whatsapp i {
        font-size: 14px;
    }

    .modal-close-btn {
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Trust Badges */
.product-trust-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    text-align: center;
}

.trust-badge i {
    font-size: 24px;
    color: #0053a0;
}

.trust-badge span {
    font-size: 11px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Modal Features Section */
.modal-features-section {
    padding: 20px 0;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8e8e8;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #000;
    border-radius: 0;
}

.section-title i {
    color: #000;
    font-size: 18px;
}

.product-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.highlight-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    background: white;
    border-radius: 0;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #fafafa;
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.highlight-icon {
    width: 44px;
    height: 44px;
    background: #000;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 20px;
    color: white;
}

.highlight-content {
    flex: 1;
}

.highlight-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.highlight-content p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Product Highlights Section - HIDDEN */
.product-highlights {
    display: none;
}

/* Modal Specs Section */
.modal-specs-section {
    padding: 20px 0;
}

/* Product Specifications Section */
.product-specifications {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
}

.product-specifications h3 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-specifications h3 i {
    color: #0053a0;
    font-size: 20px;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: white;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.spec-item:hover {
    background: #f8f9fa;
}

.spec-item:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.spec-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.spec-label {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    min-width: 140px;
}

.spec-value {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 600;
    flex: 1;
}

.pincode-check input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
}

.pincode-check button {
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

#deliveryMessage {
    color: var(--success-green);
    font-weight: 500;
}

/* Professional WhatsApp Order Form */
.whatsapp-form {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.order-form-header {
    text-align: center;
    padding: 30px 0;
    border-bottom: 2px solid #f8f9fa;
    margin-bottom: 30px;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25D366, #20bf55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.form-icon i {
    font-size: 36px;
    color: white;
}

.order-form-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.order-form-header p {
    color: #6c757d;
    font-size: 16px;
    font-weight: 500;
}

.form-sections {
    margin-bottom: 30px;
}

.form-section {
    background: #fafbfc;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
}

.form-section h3 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    color: #3498db;
    font-size: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.order-summary-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #dee2e6;
}

.order-summary-section h3 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-summary-section h3 i {
    color: #28a745;
}

.order-details {
    background: white;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e9ecef;
}

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

.submit-whatsapp-btn {
    width: 100%;
    padding: 20px 30px;
    background: linear-gradient(135deg, #25D366, #20bf55);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.submit-whatsapp-btn:hover {
    background: linear-gradient(135deg, #1ebe57, #25D366);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.security-note {
    color: #6c757d;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.security-note i {
    color: #28a745;
}

/* Footer */
.footer {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 80px 60px 40px;
    margin-top: 120px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
}

.footer-section p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

.footer-section a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.social-icons {
    display: flex;
    gap: 20px;
    font-size: 20px;
}

.social-icons i {
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.social-icons i:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

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

@keyframes scrollLeft {
    from { 
        transform: translateX(0); 
    }
    to { 
        transform: translateX(-50%); 
    }
}

@keyframes scrollRight {
    from { 
        transform: translateX(-50%); 
    }
    to { 
        transform: translateX(0); 
    }
}

/* Desktop View - Above 1024px */
@media (min-width: 1025px) {
    .main-nav {
        display: flex !important;
    }

    .mobile-menu-btn {
        display: none !important;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 15px;
    }

    .main-nav {
        display: none !important;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }

    .header-container {
        padding: 0 15px;
        gap: 10px;
    }
    
    .logo-icon {
        font-size: 30px;
    }

    .logo-text {
        font-size: 20px;
    }
    
    .logo-subtitle {
        display: none;
    }
    
    .main-nav {
        display: none !important;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .icon-btn {
        font-size: 16px;
        width: 36px;
        height: 36px;
    }

    .cart-badge {
        min-width: 18px;
        height: 18px;
        font-size: 10px;
        top: -4px;
        right: -4px;
    }

    .welcome-content {
        flex-direction: column-reverse;
        padding: 0 20px;
        gap: 40px;
    }

    .welcome-left {
        width: 100%;
        order: 2;
    }

    .welcome-right {
        order: 1;
    }

    .welcome-images-grid {
        max-width: 100%;
        gap: 15px;
    }

    .welcome-img-card img {
        height: 200px;
    }

    .welcome-img-card:first-child img {
        height: 250px;
    }

    .welcome-dialog {
        padding: 35px 25px;
        max-width: 100%;
    }

    .welcome-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .brand-logo-large {
        font-size: 42px;
        letter-spacing: 2px;
    }
    
    .welcome-tagline {
        font-size: 16px;
    }

    .welcome-features {
        gap: 20px;
    }

    .feature-item i {
        font-size: 24px;
    }

    .feature-item span {
        font-size: 12px;
    }

    .continue-btn {
        padding: 15px 40px;
        font-size: 15px;
    }

    .new-arrivals-section {
        padding: 40px 15px;
    }

    .new-arrivals-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }

    .hero-carousel {
        height: 420px;
        margin: 18px auto 32px;
        border-radius: 20px;
        max-width: 1200px;
    }
    
    .carousel-overlay {
        bottom: 35px;
        left: 35px;
        right: 35px;
        max-width: 500px;
    }
    
    .carousel-overlay h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .carousel-overlay p {
        font-size: 15px;
        margin-bottom: 22px;
    }
    
    .cta-btn {
        padding: 12px 32px;
        font-size: 13px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-btn.prev {
        left: 16px;
    }
    
    .carousel-btn.next {
        right: 16px;
    }

    .modal {
        padding: 12px;
        background: rgba(0, 0, 0, 0.6);
    }

    .modal.active {
        padding: 12px;
    }

    .modal-content {
        border-radius: 16px;
        max-height: 95vh;
        margin: 0 auto;
        width: 100%;
    }

    .modal-image-section {
        max-height: 50%;
    }

    .main-media {
        height: 320px;
        padding: 16px;
    }

    .media-thumbnails {
        padding: 12px 16px;
    }

    .media-thumb {
        width: 60px;
        height: 60px;
    }

    .modal-details-section {
        max-height: 50%;
        padding: 16px;
        padding-bottom: 80px;
    }

    .modal-product-name {
        font-size: 22px;
    }

    .modal-price-section {
        margin-bottom: 12px;
    }

    .modal-price {
        font-size: 24px;
        color: #000000;
    }
    
    .current-price {
        font-size: 28px;
        color: #000000;
    }

    .modal-description {
        font-size: 13px;
    }

    .modal-actions-sticky {
        padding: 12px 16px;
    }

    .modal-btn-primary {
        padding: 12px 20px;
        font-size: 14px;
    }

    .size-option,
    .color-option {
        padding: 8px 16px;
        font-size: 13px;
        min-width: 45px;
    }

    .quantity-controls button {
        width: 36px;
        height: 36px;
    }

    .quantity-controls input {
        width: 50px;
        font-size: 15px;
    }

    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 12px;
    }

    .spec-label {
        min-width: auto;
        font-size: 12px;
    }

    .spec-value {
        font-size: 13px;
    }

    .product-media-slider {
        position: static;
    }
    
    .main-media {
        height: 320px;
        border-radius: 8px;
    }

    .media-thumb {
        width: 60px;
        height: 60px;
    }

    .modal-content {
        border-radius: 0;
        max-height: 100vh;
        height: 100vh;
        margin: 0;
        width: 100%;
        max-width: 100%;
        overflow-y: auto;
    }

    .close-modal,
    .close-modal-modern {
        right: 15px;
        top: 15px;
        width: 34px;
        height: 34px;
        font-size: 18px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }

    #modalProductName {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .product-price-modal {
        padding: 18px 0;
        margin-bottom: 18px;
    }

    .product-price-modal .discount-price {
        font-size: 26px;
    }

    .product-price-modal .original-price {
        font-size: 18px;
    }

    .product-description {
        font-size: 14px;
        padding: 16px 0;
        margin: 16px 0;
        white-space: pre-line;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .size-option {
        padding: 7px 15px;
        font-size: 13px;
    }

    .color-option {
        width: 38px;
        height: 38px;
    }

    .add-to-cart-btn,
    .whatsapp-btn {
        padding: 13px 18px;
        font-size: 14px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .product-specifications {
        padding: 18px;
        margin-top: 18px;
    }

    /* Order Form Mobile Responsive */
    .whatsapp-form {
        max-width: 95%;
        margin: 0 auto;
    }

    .order-form-header {
        padding: 20px 0;
    }

    .form-icon {
        width: 60px;
        height: 60px;
    }

    .form-icon i {
        font-size: 28px;
    }

    .order-form-header h2 {
        font-size: 24px;
    }

    .order-form-header p {
        font-size: 14px;
    }

    .form-section {
        padding: 20px;
        margin-bottom: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .submit-whatsapp-btn {
        padding: 16px 20px;
        font-size: 16px;
        gap: 10px;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }

    .cart-modal {
        width: 100%;
        max-width: 100%;
    }

    .products-section {
        padding: 0 16px;
        margin-top: 20px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }

    .view-all-link {
        font-size: 13px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0;
    }

    .product-card {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
        border-radius: 24px;
    }

    .product-image {
        height: 280px;
        border-radius: 24px 24px 0 0;
    }

    .product-info {
        padding: 16px 16px 14px;
    }

    .product-info h3 {
        font-size: 15px;
        min-height: 40px;
        margin-bottom: 6px;
    }

    .discount-price {
        font-size: 18px;
    }

    .quick-add-btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    .product-badge {
        top: 15px;
        right: 15px;
        padding: 8px 16px;
        font-size: 10px;
    }

    .product-card:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    }

    .product-badge {
        top: 8px;
        left: 8px;
        padding: 4px 8px;
        font-size: 10px;
        border-radius: 4px;
    }

    .product-condition {
        top: 8px;
        right: 8px;
        padding: 4px 8px;
        font-size: 10px;
        border-radius: 4px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0;
    }
    
    .product-card {
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .product-image {
        height: 180px;
        border-radius: 10px 10px 0 0;
    }

    .product-image img {
        width: 80%;
        height: 80%;
    }

    /* Make quick actions always visible on mobile */
    .product-quick-actions {
        opacity: 1;
        transform: translateY(0);
        position: static;
        background: white;
        padding: 12px;
        border-top: 1px solid #e8e8e8;
        gap: 8px;
        backdrop-filter: none;
    }

    .quick-add-btn {
        padding: 11px 14px;
        font-size: 12px;
        border-radius: 6px;
        gap: 6px;
        box-shadow: 0 2px 8px rgba(0, 83, 160, 0.25);
        font-weight: 600;
    }

    .quick-view-btn {
        width: 42px;
        height: 42px;
        font-size: 14px;
        border-radius: 6px;
    }
    
    .product-info {
        padding: 14px;
    }
    
    .product-info h3 {
        font-size: 14px;
        min-height: 40px;
        line-height: 1.35;
        font-weight: 600;
    }
    
    .product-rating {
        gap: 6px;
        margin-bottom: 8px;
    }

    .stars {
        font-size: 12px;
    }

    .rating-text {
        font-size: 11px;
    }

    .discount-price {
        font-size: 18px;
    }

    .original-price {
        font-size: 14px;
    }

    .discount-badge {
        font-size: 10px;
        padding: 4px 7px;
    }

    .cart-item {
        padding: 12px;
        gap: 12px;
    }

    .cart-item-image {
        width: 70px;
        height: 70px;
    }

    .cart-item-name {
        font-size: 13px;
    }

    .cart-item-price {
        font-size: 15px;
    }

    .cart-qty-btn {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }

    .close-modal,
    .close-modal-modern {
        width: 40px;
        height: 40px;
        right: 12px;
        top: 12px;
        font-size: 18px;
    }

    .new-arrivals-section {
        padding: 30px 15px;
    }

    .new-arrivals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .original-price {
        font-size: 14px;
    }
    
    .footer {
        padding: 50px 20px 30px;
    }
}

/* Mobile Product Card Improvements (480px and down) */
@media (max-width: 480px) {
    .product-card {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        background: white;
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
    }

    .product-card:active {
        transform: scale(0.98);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    }

    .product-image {
        width: 100%;
        height: 200px;
        overflow: hidden;
        background: #f5f5f5;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .product-info {
        padding: 14px 14px 12px;
        gap: 10px;
    }

    .product-info h3 {
        font-size: 14px;
        margin-bottom: 6px;
        min-height: 36px;
    }

    .discount-price {
        font-size: 16px;
    }

    .product-quick-actions {
        position: static;
        bottom: auto;
        left: auto;
        right: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: flex;
        gap: 10px;
        padding: 12px 14px;
        background: #f8f9fa;
        border-top: 1px solid #f0f0f0;
        border-radius: 0;
        z-index: 10;
    }

    .quick-add-btn {
        flex: 1;
        padding: 10px 12px;
        font-size: 11px;
        border-radius: 10px;
        background: #000;
        color: white;
    }

    .quick-add-btn:active {
        transform: scale(0.95);
    }
}

/* Extra Small Devices (phones, 480px and down) */
@media (max-width: 480px) {
    .main-nav {
        display: none !important;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .modal {
        padding: 0;
        background: rgba(0, 0, 0, 0.6);
        align-items: flex-end;
    }

    .modal.active {
        align-items: flex-end;
    }

    .modal-content {
        border-radius: 20px 20px 0 0;
        max-height: 95vh;
        height: 95vh;
        margin: 0;
        overflow: hidden;
        width: 100%;
    }

    .product-modal-pro {
        width: 100%;
        height: 100vh;
        max-width: 100%;
        border-radius: 28px 28px 0 0;
        flex-direction: column;
        overflow: hidden;
        box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    }

    .modal-container-pro {
        flex-direction: column;
        height: 100%;
        width: 100%;
    }

    .modal-gallery-section {
        width: 100%;
        height: 48%;
        max-height: 48%;
        padding: 16px 14px 12px 14px;
        border-right: none;
        border-bottom: none;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: white;
    }

    .gallery-main-wrapper {
        max-height: 65%;
        margin-bottom: 10px;
        flex-shrink: 0;
    }

    .gallery-main {
        border-radius: 10px;
        height: 100%;
    }

    .gallery-thumbnails {
        width: 100%;
        gap: 8px;
        padding: 0;
        height: auto;
        flex-wrap: wrap;
        justify-content: center;
        flex-shrink: 0;
    }

    .media-thumb {
        width: 56px;
        height: 56px;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .modal-details-pro {
        width: 100%;
        height: 52%;
        max-height: 52%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: white;
        border-radius: 28px 28px 0 0;
    }

    .product-header-info {
        padding: 14px 0 16px 0;
        border-bottom: 1px solid #e8e8e8;
        margin-bottom: 12px;
    }

    .rating-display {
        margin-bottom: 6px;
    }

    .product-title {
        font-size: 18px;
        margin: 4px 0 8px 0;
        line-height: 1.3;
    }

    .price-display {
        gap: 8px;
        flex-wrap: wrap;
    }

    .current-price {
        font-size: 22px;
    }

    .original-price {
        font-size: 13px;
    }

    .discount-badge {
        padding: 3px 9px;
        font-size: 11px;
        border-radius: 5px;
    }

    .details-scrollable {
        padding: 12px 14px;
        flex: 1;
        overflow-y: auto;
        min-height: 0;
    }

    .product-description {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 10px;
        color: #555;
    }

    .divider-line {
        height: 1px;
        background: #f0f0f0;
        margin: 10px 0;
    }

    .options-section {
        margin-bottom: 12px;
    }

    .option-group-pro {
        margin-bottom: 11px;
    }

    .option-header label {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .size-grid,
    .color-grid {
        grid-template-columns: repeat(auto-fill, minmax(42px, 1fr));
        gap: 7px;
        padding: 6px;
    }

    .size-option {
        padding: 8px;
        font-size: 11px;
        border-radius: 7px;
    }

    .color-option {
        width: 42px;
        height: 42px;
        border-radius: 7px;
    }

    .quantity-selector {
        height: 36px;
        width: fit-content;
    }

    .qty-decrease,
    .qty-increase {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    #quantity {
        width: 45px;
        height: 36px;
        font-size: 13px;
    }

    .benefits-section {
        padding: 10px;
        margin-top: 10px;
        gap: 8px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        font-size: 11px;
    }

    .benefit-item {
        gap: 8px;
        font-size: 11px;
    }

    .benefit-item i {
        font-size: 15px;
        margin-top: 1px;
    }

    .benefit-title {
        font-size: 11px;
        margin: 0;
    }

    .benefit-desc {
        font-size: 10px;
        margin: 1px 0 0 0;
        color: #777;
    }

    .action-buttons-pro {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 14px 14px 20px 14px;
        border-top: 1px solid #f0f0f0;
        flex-shrink: 0;
        background: white;
    }

    .btn-primary,
    .btn-secondary,
    .btn-whatsapp {
        padding: 12px 14px;
        font-size: 13px;
        border-radius: 12px;
        font-weight: 600;
    }

    .btn-primary i,
    .btn-secondary i,
    .btn-whatsapp i {
        font-size: 14px;
    }

    .modal-close-btn {
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
        font-size: 16px;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        border: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
}

/* Footer Mobile */
@media (max-width: 480px) {
    .section-title {
        font-size: 15px;
    }

    .add-to-cart-btn,
    .buy-now-btn,
    .whatsapp-btn {
        padding: 12px 16px;
        font-size: 13px;
    }

    .close-modal,
    .close-modal-modern {
        position: fixed;
        right: 12px;
        top: 12px;
        width: 40px;
        height: 40px;
        font-size: 18px;
        z-index: 2001;
        background: rgba(255, 255, 255, 0.95);
    }

    .welcome-content {
        padding: 20px 15px;
        gap: 25px;
        flex-direction: column-reverse;
    }

    .welcome-left {
        order: 2;
    }

    .welcome-right {
        order: 1;
    }

    .welcome-images-grid {
        gap: 10px;
    }

    .welcome-img-card {
        padding: 8px;
    }

    .welcome-img-card img {
        height: 130px;
        border-radius: 12px;
    }

    .welcome-img-card:first-child img {
        height: 180px;
    }

    .welcome-dialog {
        padding: 25px 18px;
        border-radius: 20px;
    }

    .welcome-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .brand-logo-large {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .welcome-tagline {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .welcome-features {
        gap: 15px;
        flex-wrap: wrap;
    }

    .feature-item i {
        font-size: 20px;
    }

    .feature-item span {
        font-size: 11px;
    }

    .continue-btn {
        padding: 14px 35px;
        font-size: 14px;
        width: 100%;
    }

    .header {
        padding: 10px 0;
    }

    .header-container {
        padding: 0 12px;
        gap: 8px;
    }

    .logo-icon {
        font-size: 28px;
    }

    .logo-text {
        font-size: 18px;
    }

    .icon-btn {
        font-size: 15px;
        width: 34px;
        height: 34px;
    }

    .cart-badge {
        min-width: 16px;
        height: 16px;
        font-size: 9px;
        top: -3px;
        right: -3px;
    }

    /* Header sizing overrides: increase bar height and ensure readable logo text on all screens */
    .header {
        padding: 20px 0 !important;
        min-height: 72px;
    }

    .header-container {
        padding: 0 28px !important;
        align-items: center;
    }

    .logo-text {
        /* keep a strong brand but ensure it never becomes too small on mobile */
        font-size: clamp(22px, 3.4vw, 36px) !important;
    }

    .logo-icon {
        font-size: clamp(28px, 3vw, 44px) !important;
    }

    /* Slightly increase nav link size for visibility */
    .nav-link {
        font-size: 16px !important;
        padding: 12px 18px !important;
    }

    @media (max-width: 768px) {
        .header { padding: 16px 0 !important; min-height: 64px; }
        .header-container { padding: 0 18px !important; }
        .logo-text { font-size: clamp(20px, 5.5vw, 24px) !important; }
        .logo-icon { font-size: 30px !important; }
    }

    @media (max-width: 480px) {
        .header { padding: 14px 0 !important; min-height: 60px; }
        .header-container { padding: 0 12px !important; }
        .logo-text { font-size: 20px !important; }
        .logo-icon { font-size: 28px !important; }
        .nav-link { display: none; }
    }

    .mobile-menu-btn {
        padding: 6px 10px;
        font-size: 18px;
    }

    .hero-carousel {
        height: 280px;
        border-radius: 12px;
    }

    .carousel-overlay {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .carousel-overlay h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .carousel-overlay p {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .cta-btn {
        padding: 10px 24px;
        font-size: 12px;
    }

    .new-arrivals-section,
    .products-section {
        padding:0px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .view-all-link {
        font-size: 13px;
    }

    .products-grid,
    .new-arrivals-grid {
        gap: 10px;
    }

    .product-image {
        height: 150px;
    }

    .product-info {
        padding: 10px;
    }

    /* Make quick actions always visible on small mobile */
    .product-quick-actions {
        opacity: 1;
        transform: translateY(0);
        position: static;
        background: white;
        padding: 8px;
        border-top: 1px solid #f0f0f0;
        gap: 6px;
    }

    .quick-add-btn {
        padding: 8px 10px;
        font-size: 10px;
        border-radius: 5px;
        gap: 4px;
    }

    .quick-view-btn {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .product-info h3 {
        font-size: 12px;
        min-height: 32px;
    }

    .discount-price {
        font-size: 14px;
    }

    .original-price {
        font-size: 11px;
    }

    .product-badge {
        top: 10px;
        right: 10px;
        padding: 5px 10px;
        font-size: 10px;
    }

    .modal-body {
        padding: 20px 15px;
        gap: 20px;
        max-height: 75vh;
    }

    .main-media {
        height: 250px;
        border-radius: 6px;
    }

    .media-thumb {
        width: 55px;
        height: 55px;
    }

    #modalProductName {
        font-size: 20px;
    }

    .product-rating-modal {
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

    .product-price-modal {
        padding: 15px 0;
        margin-bottom: 15px;
    }

    .product-price-modal .discount-price {
        font-size: 24px;
    }

    .product-price-modal .original-price {
        font-size: 16px;
    }

    .product-description {
        font-size: 13px;
        padding: 14px 0;
        margin: 14px 0;
    }

    .size-option {
        padding: 6px 12px;
        font-size: 12px;
    }

    .color-option {
        width: 36px;
        height: 36px;
    }

    .quantity-controls {
        padding: 4px;
    }

    .quantity-controls button {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .quantity-controls input {
        width: 45px;
        font-size: 14px;
    }

    .add-to-cart-btn,
    .whatsapp-btn {
        padding: 12px 18px;
        font-size: 13px;
    }

    .product-specifications {
        padding: 15px;
        margin-top: 15px;
    }

    .product-specifications h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .spec-label {
        font-size: 10px;
    }

    .spec-value {
        font-size: 12px;
    }

    /* Order Form 480px Mobile */
    .order-form-header {
        padding: 15px 0;
    }

    .form-icon {
        width: 50px;
        height: 50px;
    }

    .form-icon i {
        font-size: 24px;
    }

    .order-form-header h2 {
        font-size: 20px;
    }

    .form-section {
        padding: 15px;
    }

    .form-section h3 {
        font-size: 16px;
    }

    .submit-whatsapp-btn {
        padding: 14px 18px;
        font-size: 14px;
    }

    .cart-modal-header h2 {
        font-size: 18px;
    }

    .cart-item {
        padding: 10px;
        gap: 10px;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }

    .cart-item-name {
        font-size: 12px;
    }

    .cart-item-price {
        font-size: 14px;
    }

    .cart-qty-btn {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .cart-modal .cart-footer {
        padding: 15px;
    }

    .cart-modal .cart-total {
        font-size: 18px;
    }

    .cart-modal.active .checkout-btn {
        padding: 14px;
        font-size: 14px;
        background-color: #0071dc !important;
        color: white !important;
    }

    .checkout-header {
        padding: 16px;
    }

    .checkout-title h2 {
        font-size: 20px;
    }

    .checkout-title p {
        font-size: 12px;
    }

    .checkout-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 16px;
    }

    .checkout-summary-section {
        position: static;
        margin-top: 20px;
    }

    .form-block {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkout-actions {
        grid-template-columns: 1fr;
    }

    .btn-checkout-primary,
    .btn-checkout-secondary {
        padding: 14px 16px;
        font-size: 13px;
    }

    .privacy-modal-content {
        max-width: calc(100% - 20px);
    }

    .mobile-menu-header,
    .cart-modal-header {
        padding: 15px;
    }

    .mobile-menu-content {
        padding: 15px;
    }

    .mobile-menu-link {
        padding: 10px 12px;
        font-size: 14px;
    }

    .footer {
        padding: 40px 15px 25px;
    }

    .footer-section h3 {
        font-size: 16px;
    }

    .footer-section h4 {
        font-size: 14px;
    }

    .footer-section a,
    .footer-section p {
        font-size: 13px;
    }

    /* Mobile Welcome Screen */
    .welcome-brand-title {
        font-size: 60px;
        letter-spacing: 4px;
    }

    .welcome-brand-subtitle {
        font-size: 16px;
        letter-spacing: 1px;
        margin-top: 12px;
    }

    .welcome-dialog-bottom {
        bottom: 20px;
        width: 90%;
    }

    .welcome-dialog {
        padding: 28px 20px;
        width: 100%;
    }

    .welcome-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 16px;
    }

    .welcome-features {
        gap: 15px;
        margin-bottom: 20px;
    }

    .feature-item span {
        font-size: 11px;
    }

    .continue-btn {
        padding: 14px 32px;
        font-size: 13px;
        margin-bottom: 8px;
    }

    .auto-enter-text {
        font-size: 11px;
    }

    /* Mobile Cart Modal Fixes */
    .cart-modal {
        width: 100%;
        max-width: 100%;
        height: 100vh;
        right: -100%;
    }

    .cart-modal.active {
        right: 0;
    }

    .cart-modal-header {
        padding: 15px;
    }

    .cart-modal-header h2 {
        font-size: 18px;
    }

    .cart-items {
        padding: 12px;
        padding-bottom: 0px !important;
        flex: 1 1 auto;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        max-height: calc(100vh - 230px) !important;
        min-height: 0 !important;
    }

    .cart-item {
        padding: 12px;
        gap: 12px;
    }

    .cart-item-image {
        width: 70px;
        height: 70px;
    }

    .cart-item-name {
        font-size: 13px;
    }

    .cart-item-price {
        font-size: 14px;
    }

    .cart-modal .cart-footer {
        display: none !important;
        flex-direction: column !important;
        padding: 16px !important;
        gap: 8px !important;
        border-top: 2px solid var(--border-color);
        background-color: white !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 2600 !important;
        box-shadow: 0 -4px 16px rgba(0,0,0,0.15) !important;
        flex-shrink: 0 !important;
    }

    .cart-modal.active .cart-footer {
        display: flex !important;
    }

    .cart-modal .cart-total {
        font-size: 18px;
        margin-bottom: 8px !important;
        display: flex !important;
        justify-content: space-between !important;
    }

    .cart-modal .checkout-btn {
        display: block !important;
        width: 100% !important;
        padding: 18px !important;
        font-size: 16px !important;
        min-height: 56px !important;
        font-weight: 700 !important;
        border-radius: 12px !important;
        background-color: var(--accent-blue) !important;
        color: white !important;
        border: none !important;
        cursor: pointer !important;
        text-align: center !important;
    }

    .add-to-cart-btn {
        padding: 14px;
        font-size: 14px;
        min-height: 48px;
        width: 100%;
    }
}

/* ========================================
   FULL-SCREEN PRODUCT DETAIL PAGE
   ======================================== */

.product-detail-page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 15000;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    animation: slideInFromRight 0.3s ease;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Header */
.pdp-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 100;
    border-bottom: 1px solid #f0f0f0;
}

.pdp-back-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #000;
    transition: all 0.2s;
}

.pdp-back-btn:hover {
    background: #e8e8e8;
}

.pdp-back-btn:active {
    transform: scale(0.95);
}

.pdp-header-actions {
    display: flex;
    gap: 12px;
}

.pdp-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #0066ff1c;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #000;
    transition: all 0.2s;
}

.pdp-icon-btn:hover {
    background: #e8e8e8;
}

.pdp-icon-btn:active {
    transform: scale(0.95);
}

/* Main Image Section */
.pdp-image-section {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 16px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdp-main-image {
    width: 97%;
    max-width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    overflow: hidden;
    background: #f8f8f8;
    transition: opacity 0.3s ease;
}

.pdp-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
}

.pdp-badge {
    position: absolute;
    top: 26px;
    right: 26px;
    background: #000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pdp-image-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.pdp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdp-dot i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    transition: all 0.3s;
}

.pdp-dot.active {
    background: #000;
    width: 24px;
    border-radius: 4px;
}

.pdp-dot.active i {
    color: #fff;
    font-size: 11px;
}

/* Video Player Styles */
.pdp-video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
}

.pdp-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pdp-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
    pointer-events: all;
}

.pdp-video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid #fff;
    color: #fff;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding-left: 5px;
}

.pdp-video-play-btn:hover {
    background: rgba(0, 0, 0, 0.95);
    transform: scale(1.1);
}

.pdp-video-play-btn:active {
    transform: scale(0.95);
}

.pdp-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
    padding: 30px 15px 15px;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.pdp-video-controls:hover {
    opacity: 1;
}

.pdp-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pdp-progress-bar:hover {
    height: 6px;
}

.pdp-progress-fill {
    height: 100%;
    background: #fff;
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 2px;
}

.pdp-controls-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pdp-control-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    border-radius: 4px;
}

.pdp-control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.pdp-control-btn:active {
    transform: scale(0.9);
}

.pdp-time-display {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    flex: 1;
    margin-left: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Mobile Video Controls */
@media (max-width: 480px) {
    .pdp-video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
        padding-left: 4px;
        border-width: 2px;
    }
    
    .pdp-control-btn {
        font-size: 16px;
        padding: 6px;
    }
    
    .pdp-time-display {
        font-size: 12px;
    }
    
    .pdp-controls-row {
        gap: 8px;
    }
}

/* Share Notification */
.share-notification {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: #000;
    color: #fff;
    padding: 14px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 30000;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.share-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.share-notification i {
    color: #0066ff;
    font-size: 18px;
}

/* Share Options Modal */
.share-options-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 25000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.share-options-modal.show {
    opacity: 1;
}

.share-options-content {
    background: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: 20px 20px 0 0;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.share-options-modal.show .share-options-content {
    transform: translateY(0);
}

.share-options-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.share-options-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.close-share-modal {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #000;
    transition: all 0.2s;
}

.close-share-modal:hover {
    background: #e8e8e8;
}

.share-options-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.share-option-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.share-option-btn:hover {
    border-color: #0066ff;
    background: #f8f9ff;
}

.share-option-btn:active {
    transform: scale(0.95);
}

.share-option-btn i {
    font-size: 32px;
}

.share-option-btn:nth-child(1) i {
    color: #25D366;
}

.share-option-btn:nth-child(2) i {
    color: #1877F2;
}

.share-option-btn:nth-child(3) i {
    color: #1DA1F2;
}

.share-option-btn:nth-child(4) i {
    color: #0066ff;
}

.share-option-btn span {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

@media (max-width: 480px) {
    .share-options-content {
        border-radius: 16px 16px 0 0;
        padding: 16px;
    }
    
    .share-option-btn {
        padding: 16px;
    }
    
    .share-option-btn i {
        font-size: 28px;
    }
    
    .share-option-btn span {
        font-size: 13px;
    }
}

/* Content Section */
.pdp-content {
    padding: 20px 16px 100px 16px;
    background: #fff;
}

.pdp-title-section {
    margin-bottom: 16px;
}

.pdp-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    margin-bottom: 8px;
}

.pdp-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.pdp-rating .stars {
    color: #ffb800;
}

.pdp-rating span {
    color: #878787;
}

/* Price Section */
.pdp-price-section {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.pdp-price {
    font-size: 28px;
    font-weight: 700;
    color: #000;
}

.pdp-original-price {
    font-size: 18px;
    color: #878787;
    text-decoration: line-through;
}

.pdp-discount-badge {
    background: #000;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
}

/* Section */
.pdp-section {
    margin-bottom: 24px;
}

.pdp-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.pdp-description {
    font-size: 14px;
    line-height: 1.6;
    color: #535353;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Size Grid */
.pdp-size-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pdp-size-option {
    min-width: 60px;
    height: 50px;
    border: 1.5px solid #d4d5d9;
    border-radius: 50px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #282c3f;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0 16px;
}

.pdp-size-option:hover {
    border-color: #000;
}

.pdp-size-option.selected {
    border-color: #000;
    color: #fff;
    background: #000;
}

/* Color Grid */
.pdp-color-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pdp-color-option {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #d4d5d9;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.pdp-color-option:hover {
    transform: scale(1.1);
}

.pdp-color-option.selected {
    border-color: #000;
    border-width: 3px;
}

.pdp-color-option i {
    color: #fff;
    font-size: 16px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Benefits */
.pdp-benefits {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid #f0f0f0;
    margin-top: 20px;
}

.pdp-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    text-align: center;
}

.pdp-benefit i {
    font-size: 24px;
    color: #0066ff;
}

.pdp-benefit span {
    font-size: 12px;
    color: #535353;
    font-weight: 500;
}

/* Bottom Action Bar */
.pdp-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.pdp-btn {
    flex: 1;
    height: 48px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.pdp-btn i {
    font-size: 16px;
}

.pdp-btn-secondary {
    background: #fff;
    color: #000;
    border: 2px solid #000;
}

.pdp-btn-secondary:hover {
    background: #f5f5f5;
}

.pdp-btn-secondary:active {
    transform: scale(0.98);
}

.pdp-btn-primary {
    background: #000;
    color: #fff;
}

.pdp-btn-primary:hover {
    background: #333;
}

.pdp-btn-primary:active {
    transform: scale(0.98);
}

/* Desktop Responsive */
@media (min-width: 1024px) {
    .product-detail-page {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .pdp-content {
        max-width: 800px;
        width: 100%;
        margin: 0 auto;
    }

    .pdp-bottom-bar {
        max-width: 800px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pdp-image-section {
        padding: 12px;
    }

    .pdp-title {
        font-size: 20px;
    }

    .pdp-price {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .pdp-header {
        height: 56px;
        padding: 0 12px;
    }

    .pdp-image-section {
        padding: 8px;
    }

    .pdp-content {
        padding: 16px 12px 90px 12px;
    }

    .pdp-title {
        font-size: 18px;
    }

    .pdp-price {
        font-size: 22px;
    }

    .pdp-original-price {
        font-size: 16px;
    }

    .pdp-discount-badge {
        font-size: 12px;
        padding: 3px 6px;
    }

    .pdp-section-title {
        font-size: 15px;
    }

    .pdp-description {
        font-size: 13px;
    }

    .pdp-size-option {
        min-width: 55px;
        height: 45px;
        font-size: 13px;
    }

    .pdp-color-option {
        width: 44px;
        height: 44px;
    }

    .pdp-benefit i {
        font-size: 20px;
    }

    .pdp-benefit span {
        font-size: 11px;
    }

    .pdp-bottom-bar {
        height: 65px;
        padding: 10px 12px;
    }

    .pdp-btn {
        height: 45px;
        font-size: 14px;
    }
}

/* Additional overrides to ensure mobile header brand and icons are prominent and usable */
@media (max-width: 768px) {
    .header {
        padding: 18px 0 !important;
        min-height: 68px !important;
    }
    .header-container {
        padding: 0 16px !important;
    }
    .brand-logo {
        gap: 12px;
    }
    .logo-text {
        font-size: 26px !important; /* larger on mobile */
        line-height: 1;
    }
    .logo-icon {
        font-size: 32px !important;
    }
    .header-actions { gap: 10px; }
    .icon-btn { width: 46px; height: 46px; font-size: 20px; }
    .mobile-menu-btn { display: inline-flex; width:46px; height:46px; }
    .cart-btn { width:46px; height:46px; }
}

@media (max-width: 480px) {
    .header { padding: 16px 0 !important; min-height: 64px !important; }
    .logo-text { font-size: 24px !important; }
    .logo-icon { font-size: 30px !important; }
    .icon-btn { width:44px; height:44px; font-size:18px; }
    .mobile-menu-btn { width:44px; height:44px; }
    .cart-btn { width:44px; height:44px; }
    .header-actions { gap: 8px; }
}
