/* Root Variables */
:root {
    --primary-pink: #FFB6C1;
    --light-pink: #FFC0CB;
    --dark-pink: #FF69B4;
    --soft-pink: #FFE4E1;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #FFE4E1;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FFFAFA;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--white) 0%, var(--soft-pink) 100%);
    box-shadow: 0 2px 10px rgba(255, 182, 193, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dark-pink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
}

.logo-text {
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--dark-pink);
}

.cart-link {
    position: relative;
}

#cart-count {
    background-color: var(--dark-pink);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    right: -10px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--light-pink) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Buttons */
.btn-primary {
    background-color: var(--dark-pink);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #FF1493;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--dark-pink);
    border: 2px solid var(--dark-pink);
    padding: 10px 25px;
    font-size: 1rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

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

/* Features */
.features {
    padding: 60px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: var(--soft-pink);
    border-radius: 15px;
}

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

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--dark-pink);
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-pink);
    margin-bottom: 50px;
}

/* Categories */
.categories {
    padding: 60px 0;
    background: var(--soft-pink);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.category-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--soft-pink) 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--dark-pink);
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.4);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.category-name {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Products */
.products {
    padding: 60px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-dark);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.4);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: var(--soft-pink);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.3rem;
    color: var(--dark-pink);
    font-weight: bold;
}

/* Product Image Gallery */
.product-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.product-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    background-color: var(--soft-pink);
    transition: opacity 0.3s ease;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: var(--dark-pink);
    transform: scale(1.05);
}

/* Product Gallery Navigation */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-nav:hover {
    background: var(--dark-pink);
    color: var(--white);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.product-image-wrapper {
    position: relative;
}

/* Mobile Gallery */
@media (max-width: 768px) {
    .product-main-image {
        height: 350px;
    }
    
    .product-thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .gallery-nav {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #555 100%);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer h4 {
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: var(--light-pink);
    text-decoration: none;
}

.footer a:hover {
    color: var(--white);
}

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

/* Loading */
.loading {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
}

/* Responsive */
/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    /* Header & Navigation */
    .navbar {
        flex-wrap: wrap;
        padding: 10px 0;
    }

    .logo {
        font-size: 1.2rem;
        gap: 8px;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    /* Hamburger Menu */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, var(--white) 0%, var(--soft-pink) 100%);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 15px;
        display: block;
        border-radius: 8px;
        text-align: center;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--dark-pink);
        margin: 3px 0;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Hero Section */
    .hero {
        padding: 40px 0;
    }

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

    .hero p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 1rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 20px;
    }

    /* Categories */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .category-card {
        padding: 20px;
    }

    .category-icon {
        font-size: 2rem;
    }

    .category-name {
        font-size: 1rem;
    }

    /* Products */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-card {
        padding: 15px;
    }

    .product-image {
        height: 200px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Video Ad */
    .video-ad-title {
        font-size: 1.3rem;
    }

    /* Cart & Checkout */
    .cart-grid,
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
    }

    .cart-item-actions {
        grid-column: 1 / -1;
        justify-content: space-between;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Account */
    .account-grid {
        grid-template-columns: 1fr;
    }

    .account-sidebar {
        margin-bottom: 20px;
    }

    .sidebar-menu a {
        padding: 10px;
        font-size: 1rem;
    }

    /* Tables */
    .table-responsive {
        overflow-x: auto;
    }

    table {
        min-width: 600px;
    }

    /* Product Detail */
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    /* Settings */
    .settings-grid {
        grid-template-columns: 1fr;
    }

    .settings-sidebar {
        margin-bottom: 20px;
    }

    .sidebar-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .sidebar-menu li {
        margin-bottom: 0;
    }

    .sidebar-menu a {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    /* Auth Pages */
    .auth-card {
        padding: 25px;
        max-width: 100%;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Order Cards */
    .order-card {
        padding: 15px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 20px;
    }

    /* Padding adjustments */
    .features,
    .categories,
    .products {
        padding: 40px 0;
    }

    /* Container */
    .container {
        padding: 0 15px;
    }
}

/* Extra Small Devices (max-width: 480px) */
@media (max-width: 480px) {
    .logo {
        font-size: 1rem;
    }

    .logo-image {
        width: 35px;
        height: 35px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .nav-menu,
    .video-ad-section,
    .whatsapp-float {
        display: none;
    }
}

/* Video Advertisement */
.video-ad-section {
    padding: 40px 0;
    background: var(--soft-pink);
    text-align: center;
}

.video-ad-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-ad-title {
    color: var(--dark-pink);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.video-ad-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
}

.video-ad-wrapper:hover {
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.5);
}

.video-ad-wrapper[style*="cursor: pointer"]:hover {
    transform: scale(1.02);
}

.video-ad-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-ad-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.video-ad-close:hover {
    background: var(--dark-pink);
    transform: scale(1.1);
}

/* Video Mute Button */
.video-mute-btn {
    position: absolute;
    bottom: 10px;
    right: 50px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.video-mute-btn:hover {
    background: var(--dark-pink);
    transform: scale(1.1);
}

.video-ad-hidden {
    display: none;
}

/* ========== DISCOUNT & PRICING STYLES ========== */

/* Discount Badge on Product Cards */
.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4757 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
    z-index: 10;
    animation: pulse 2s infinite;
}

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

/* Product Detail Discount Badge */
.product-detail-discount-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4757 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.5);
    z-index: 10;
    animation: pulse 2s infinite;
}

/* Price Group - Product Cards */
.product-price-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.product-selling-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-pink);
}

.product-original-price {
    font-size: 0.95rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

/* Price Group - Product Detail Page */
.product-detail-price-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.product-detail-selling-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-pink);
}

.product-detail-original-price {
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

/* Discount Savings Message */
.discount-savings {
    background: linear-gradient(135deg, #fff3f3 0%, #ffe4e1 100%);
    color: #FF6B6B;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 15px 0;
    border: 2px dashed #FFB6C1;
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-detail-selling-price {
        font-size: 1.6rem;
    }
    
    .product-detail-original-price {
        font-size: 1.1rem;
    }

    .discount-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .product-detail-discount-badge {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

/* ========== COMPREHENSIVE MOBILE OPTIMIZATION ========== */
@media (max-width: 768px) {
    /* Header & Navigation */
    .header {
        padding: 10px 0;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    /* Hamburger Menu */
    .hamburger {
        display: flex;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
    }
    
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Hero Section */
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-secondary,
    .btn-large {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .btn-sm {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    /* Product Cards */
    .product-card {
        margin-bottom: 15px;
    }
    
    .product-image {
        height: 250px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-title {
        font-size: 0.95rem;
    }
    
    .product-category {
        font-size: 0.8rem;
    }
    
    /* Product Detail Page */
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-main-image {
        height: 350px;
    }
    
    .product-detail-selling-price {
        font-size: 1.6rem;
    }
    
    .product-detail-original-price {
        font-size: 1.1rem;
    }
    
    .product-detail-discount-badge {
        top: 10px;
        left: 10px;
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    /* Cart Page */
    .cart-item {
        flex-direction: column;
        padding: 15px;
    }
    
    .cart-item-image {
        width: 100%;
        height: 200px;
    }
    
    .cart-item-details {
        width: 100%;
        padding: 10px 0;
    }
    
    .cart-item-actions {
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
    }
    
    /* Forms */
    input,
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    /* Tables */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    th, td {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    /* Admin Panel */
    .admin-layout {
        grid-template-columns: 1fr;
    }
    
    .admin-sidebar {
        padding: 15px;
    }
    
    .admin-content {
        padding: 20px 15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    /* Checkout */
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        order: -1;
    }
    
    /* Account Page */
    .account-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Sections */
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Grid Layouts */
    .products-grid,
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Digital Products */
    .digital-product-card {
        margin-bottom: 15px;
    }
    
    .product-image {
        height: 150px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-title {
        font-size: 0.9rem;
    }
    
    .digital-selling-price {
        font-size: 1rem;
    }
    
    /* Discount Savings */
    .discount-savings {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        max-height: 95vh;
        overflow-y: auto;
        padding: 20px;
    }
    
    /* Video Ads */
    .video-ad-section {
        padding: 20px 0;
    }
    
    /* Filters */
    .filters-grid {
        grid-template-columns: 1fr;
    }
    
    /* Typography */
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    p {
        font-size: 0.95rem;
    }
    
    /* Spacing */
    .container {
        padding: 0 15px;
    }
    
    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Extra Small Devices (max-width: 480px) */
@media (max-width: 480px) {
    /* Smaller hero */
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    /* Product grid - single column on very small screens */
    .products-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    /* Stats grid - single column */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    /* Smaller buttons */
    .btn-primary,
    .btn-secondary {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    /* Smaller discount badge */
    .discount-badge {
        font-size: 0.65rem;
        padding: 3px 8px;
    }
    
    .shop-discount-badge {
        font-size: 0.65rem;
        padding: 3px 8px;
        top: 6px;
        right: 6px;
    }
    
    /* Price adjustments */
    .mobile-selling-price {
        font-size: 0.95rem;
    }
    
    .mobile-original-price {
        font-size: 0.75rem;
    }
    
    .mobile-discount-savings {
        font-size: 0.65rem;
        padding: 3px 6px;
    }
    
    /* Product image */
    .product-image {
        height: 200px;
    }
    
    .product-main-image {
        height: 280px;
    }
    
    /* Typography */
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    /* Logo */
    .logo {
        font-size: 1.1rem;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Larger tap targets */
    button,
    a,
    input,
    select,
    textarea {
        min-height: 44px;
    }
    
    /* Remove hover effects on touch devices */
    .product-card:hover,
    .digital-product-card:hover {
        transform: none;
    }
    
    /* Better scrolling */
    .table-responsive {
        -webkit-overflow-scrolling: touch;
    }
}

/* Landscape orientation optimization */
@media (max-width: 896px) and (orientation: landscape) {
    .product-main-image {
        height: 300px;
    }
    
    .hero {
        padding: 30px 0;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .nav-menu,
    .btn-primary,
    .btn-secondary,
    .discount-badge,
    video,
    iframe {
        display: none !important;
    }
    
    body {
        background: white;
    }
    
    .product-card {
        break-inside: avoid;
    }
}
