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

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --text-color: #1a1a1a;
    --text-light: #666666;
    --border-color: #e5e5e5;
    --hover-color: #333333;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mobile-first improvements */
* {
    -webkit-tap-highlight-color: transparent;
}

button, a, input, select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input, textarea, select {
    font-size: 16px; /* Prevents zoom on iOS */
}

@media (max-width: 768px) {
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS when focusing */
    }
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary-color);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    font-size: 12px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-link {
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.top-link:hover {
    color: var(--hover-color);
}

.country-select {
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    padding: 5px;
}

/* Header */
.main-header {
    background-color: var(--secondary-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left,
.header-right {
    flex: 1;
}

.header-center {
    flex: 2;
    text-align: center;
}

.logo {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    display: inline-block;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.header-right {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.header-icon {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    padding: 5px;
}

.header-icon:hover {
    opacity: 0.7;
}

/* Navigation */
.main-nav {
    background-color: var(--secondary-color);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-color);
    padding: 10px 0;
    display: block;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--hover-color);
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    min-width: 800px;
    padding: 40px;
    display: none;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.nav-item:hover .mega-menu {
    display: block;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 300px;
    gap: 40px;
}

.mega-menu-column h3 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.mega-menu-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mega-menu-column ul li a {
    font-size: 13px;
    color: var(--text-light);
    transition: var(--transition);
}

.mega-menu-column ul li a:hover {
    color: var(--text-color);
}

.mega-menu-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-menu-img-placeholder {
    width: 100%;
    height: 300px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 12px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

.hero-slide {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 24px;
    font-weight: 300;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--secondary-color);
    z-index: 10;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-button {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 500;
    transition: var(--transition);
}

.hero-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Collections */
.collections {
    padding: 80px 0;
}

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

.collection-item {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition);
}

.collection-item:hover .collection-img {
    transform: scale(1.05);
}

.collection-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 20px;
    font-weight: 300;
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.collection-item:hover .collection-overlay {
    opacity: 1;
}

.collection-overlay h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.collection-link {
    padding: 12px 30px;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 500;
    transition: var(--transition);
}

.collection-link:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

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

.product-card {
    position: relative;
}

.product-link {
    display: block;
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 125%;
    overflow: hidden;
    margin-bottom: 15px;
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

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

.product-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
    transition: var(--transition);
}

.product-card:hover .product-placeholder {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.product-name {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.newsletter-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.newsletter-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    background-color: var(--secondary-color);
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.newsletter-button {
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
    font-weight: 500;
    transition: var(--transition);
}

.newsletter-button:hover {
    background-color: var(--hover-color);
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.social-link:hover {
    color: var(--secondary-color);
}

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

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Product Detail Page */
.breadcrumb {
    padding: 20px 0;
    font-size: 12px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--text-color);
}

.breadcrumb span {
    color: var(--text-color);
}

.product-detail {
    padding: 60px 0;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-main-image {
    width: 100%;
    padding-top: 125%;
    position: relative;
    overflow: hidden;
}

.product-main-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 16px;
}

.product-thumbnails {
    display: flex;
    gap: 15px;
}

.thumbnail {
    width: 100px;
    height: 120px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    overflow: hidden;
}

.thumbnail:hover {
    border-color: var(--border-color);
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 11px;
}

.product-info {
    padding-top: 20px;
}

.product-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.product-code {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.product-price {
    margin-bottom: 30px;
}

.current-price {
    font-size: 24px;
    font-weight: 500;
    margin-right: 15px;
}

.original-price {
    font-size: 18px;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-description {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
}

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

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

.option-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.color-options {
    display: flex;
    gap: 10px;
}

.color-option {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.color-option.active {
    border-color: var(--primary-color);
}

.size-options {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.size-option {
    min-width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    background-color: var(--secondary-color);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

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

.size-option.active {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.size-guide-link {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: underline;
}

.size-guide-link:hover {
    color: var(--text-color);
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-add-to-cart {
    width: 100%;
    padding: 18px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-add-to-cart:hover {
    background-color: var(--hover-color);
}

.btn-wishlist {
    width: 100%;
    padding: 18px;
    border: 1px solid var(--border-color);
    background-color: var(--secondary-color);
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

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

.product-details-tabs {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.tab-header {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    padding: 15px 0;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--text-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    padding: 20px 0;
}

.tab-content.active {
    display: block;
}

.related-products {
    padding: 80px 0;
    background-color: #f9f9f9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .mega-menu {
        min-width: 600px;
    }
    
    .mega-menu-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mega-menu-image {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .product-detail-content {
        gap: 40px;
    }
    
    .hero {
        height: 70vh;
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .top-bar {
        display: none;
    }
    
    .main-header {
        padding: 15px 0;
    }
    
    .header-content {
        gap: 10px;
    }
    
    .logo {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .menu-toggle {
        display: flex;
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }
    
    .menu-toggle span {
        width: 22px;
        height: 2px;
    }
    
    .header-icon {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 0;
        display: flex;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link {
        padding: 18px 20px;
        font-size: 14px;
        display: block;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .mega-menu {
        position: static;
        transform: none;
        min-width: 100%;
        border: none;
        border-top: 1px solid var(--border-color);
        padding: 20px;
        display: block;
        box-shadow: none;
        margin: 0;
    }
    
    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mega-menu-column h3 {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .mega-menu-column ul {
        gap: 10px;
    }
    
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 32px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .hero-button {
        padding: 14px 30px;
        font-size: 11px;
        min-height: 44px;
    }
    
    .collections {
        padding: 50px 0;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }
    
    .collection-item {
        height: 350px;
    }
    
    .collection-overlay h2 {
        font-size: 36px;
    }
    
    .collection-link {
        padding: 12px 25px;
        min-height: 44px;
    }
    
    .featured-products {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-image {
        padding-top: 130%;
    }
    
    .product-name {
        font-size: 13px;
    }
    
    .product-price {
        font-size: 13px;
    }
    
    .newsletter {
        padding: 50px 0;
    }
    
    .newsletter-content h2 {
        font-size: 24px;
    }
    
    .newsletter-content p {
        font-size: 13px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-input {
        padding: 16px 20px;
        font-size: 16px;
        min-height: 44px;
        width: 100%;
    }
    
    .newsletter-button {
        padding: 16px 30px;
        min-height: 44px;
        width: 100%;
    }
    
    .product-detail {
        padding: 30px 0;
    }
    
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-thumbnails {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .thumbnail {
        width: 80px;
        height: 100px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .current-price {
        font-size: 22px;
    }
    
    .original-price {
        font-size: 16px;
    }
    
    .color-option {
        width: 44px;
        height: 44px;
    }
    
    .size-option {
        min-width: 50px;
        height: 50px;
        font-size: 14px;
    }
    
    .btn-add-to-cart,
    .btn-wishlist {
        padding: 16px;
        font-size: 13px;
        min-height: 50px;
    }
    
    .tab-header {
        flex-wrap: wrap;
        gap: 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-btn {
        padding: 12px 0;
        font-size: 11px;
        white-space: nowrap;
        min-height: 44px;
    }
    
    .related-products {
        padding: 50px 0;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .main-footer {
        padding: 40px 0 15px;
    }
    
    .breadcrumb {
        padding: 15px 0;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .logo {
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    
    .hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 24px;
        letter-spacing: 1.5px;
    }
    
    .hero-subtitle {
        font-size: 12px;
    }
    
    .hero-button {
        padding: 12px 25px;
        font-size: 10px;
    }
    
    .collections {
        padding: 40px 0;
    }
    
    .collection-item {
        height: 300px;
    }
    
    .collection-overlay h2 {
        font-size: 28px;
    }
    
    .featured-products {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-image {
        padding-top: 125%;
    }
    
    .newsletter-content h2 {
        font-size: 20px;
    }
    
    .product-detail {
        padding: 20px 0;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .product-code {
        font-size: 11px;
    }
    
    .current-price {
        font-size: 20px;
    }
    
    .original-price {
        font-size: 14px;
    }
    
    .product-description {
        font-size: 13px;
    }
    
    .size-options {
        flex-wrap: wrap;
    }
    
    .size-option {
        min-width: 45px;
        height: 45px;
        font-size: 13px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-column h3 {
        font-size: 11px;
    }
    
    .footer-column ul li a,
    .social-link {
        font-size: 12px;
    }
    
    .footer-bottom p {
        font-size: 11px;
    }
    
    .breadcrumb {
        font-size: 10px;
    }
    
    .tab-header {
        gap: 10px;
    }
    
    .tab-btn {
        font-size: 10px;
        padding: 10px 0;
    }
    
    .tab-content {
        font-size: 13px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    button,
    a,
    .nav-link,
    .product-link {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
    
    .product-card:hover .product-placeholder {
        transform: none;
    }
    
    .collection-item:hover .collection-overlay {
        opacity: 1;
    }
    
    /* Ensure minimum touch target size */
    button, .btn-add-to-cart, .btn-wishlist, .hero-button, 
    .collection-link, .nav-link, .header-icon, .menu-toggle {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Touch device specific styles */
.touch-device * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

.touch-device button:active,
.touch-device .btn-add-to-cart:active,
.touch-device .btn-wishlist:active {
    opacity: 0.7;
    transform: scale(0.98);
}

/* Prevent horizontal scroll on mobile */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Improve text rendering on mobile */
body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Better scrolling on iOS */
.main-nav,
.tab-header {
    -webkit-overflow-scrolling: touch;
}

/* Smooth scrolling for mobile */
@media (max-width: 768px) {
    html {
        scroll-behavior: smooth;
    }
    
    /* Improve spacing on mobile */
    section {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Better form inputs on mobile */
    input[type="email"],
    input[type="text"],
    textarea,
    select {
        border-radius: 0;
        -webkit-border-radius: 0;
    }
    
    /* Remove focus outline on mobile (use tap highlight instead) */
    *:focus {
        outline: none;
    }
    
    /* Better button spacing */
    .product-actions {
        gap: 12px;
    }
    
    /* Improve product grid spacing */
    .products-grid {
        padding: 0 5px;
    }
}

