:root {
    --bg-color: #050505;
    --card-bg: #111111;
    --text-color: #ffffff;
    --text-muted: #888888;
    --accent-color: #ffffff;
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
    --nav-height: 80px;
    --border-color: #222222;
}

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

body {
    background: linear-gradient(135deg, #050505 0%, #1a1a1a 100%);
    background-attachment: fixed;
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--text-color);
    color: var(--bg-color);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1001;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 30px;
    /* Adjusted for announcement bar */
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: top 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    height: 45px;
    width: auto;
}

.logo-text {
    height: 35px;
    width: auto;
    filter: invert(1);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    font-size: 1.2rem;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 2000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Related Products */
.related-products-section {
    padding: 2rem 2rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
}

.related-products-section .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Size Guide Modal */
.btn-size-guide {
    background: none;
    border: none;
    text-decoration: underline;
    color: var(--text-muted);
    cursor: pointer;
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--card-bg);
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    border: 1px solid var(--border-color);
    position: relative;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

.size-table {
    width: 100%;
    margin-top: 1.5rem;
    border-collapse: collapse;
}

.size-table th,
.size-table td {
    border: 1px solid var(--border-color);
    padding: 0.8rem;
    font-family: var(--font-body);
}

.size-table th {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s ease;
    z-index: 1500;
}

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

.mobile-menu a {
    font-size: 2rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Slider Styles */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    /* Slightly darker for text readability */
}

.slider-controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: white;
    color: black;
}

.hero-content {
    position: absolute;
    bottom: 15%;
    /* Adjusted position */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1;
    width: 100%;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 4rem;
    background: var(--text-color);
    border: 2px solid var(--text-color);
    color: var(--bg-color);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-color);
}

/* Products Section */
.products-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.divider {
    width: 100px;
    height: 2px;
    background: var(--text-color);
    margin: 2rem auto 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: transparent;
    border: none;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s ease-in-out;
}

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

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    height: 100px;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    padding: 0.8rem 2rem;
    background: var(--text-color);
    color: var(--bg-color);
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-transform: uppercase;
}

.product-info {
    padding: 0;
    text-align: left;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.product-info .price {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: var(--font-body);
}

/* Price Container & Discount Styling */
.price-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.price-original {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-family: var(--font-body);
}

.price-sale {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 700;
    font-family: var(--font-body);
}

.discount-badge {
    background: #ff4444;
    color: white;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 3px;
    font-family: var(--font-body);
}

/* Typography Section */
.typography-section {
    padding: 10rem 2rem;
    text-align: center;
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.typography-content img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    object-fit: contain;
}

/* About Section */
.about-section {
    padding: 8rem 2rem;
    background: var(--card-bg);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 1;
    height: 600px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    line-height: 1;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

/* Gallery Section */
.gallery-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1rem;
}

.gallery-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Contact Section */
.contact-section {
    padding: 8rem 2rem;
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.contact-details span {
    color: var(--text-muted);
    margin-right: 1rem;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--text-color);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.95);
    z-index: 3500;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.search-container {
    width: 100%;
    max-width: 800px;
    padding: 0 2rem;
    display: flex;
    gap: 1rem;
}

.search-container input {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--text-color);
    font-size: 2rem;
    color: var(--text-color);
    font-family: var(--font-heading);
    padding: 0.5rem;
}

.search-container input:focus {
    outline: none;
}

.btn-search-submit {
    padding: 0 2rem;
    background: var(--text-color);
    color: var(--bg-color);
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
}

.close-search {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 3rem;
    cursor: pointer;
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--card-bg);
    z-index: 3000;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border-color);
}

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

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

.cart-header h3 {
    font-size: 1.2rem;
}

.close-cart {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.cart-items {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-muted);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--card-bg);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Product Details Page */
.product-details-section {
    padding: calc(var(--nav-height) + 4rem) 2rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-details-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.product-gallery {
    position: relative;
    height: 700px;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info-col {
    padding-top: 2rem;
}

.product-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.product-price {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

/* Product Detail Page Pricing */
.product-price-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.product-price-original {
    font-size: 1.3rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-family: var(--font-body);
}

.product-price-sale {
    font-size: 2rem;
    color: var(--text-color);
    font-weight: 700;
    font-family: var(--font-heading);
}

.product-discount-badge {
    background: #ff4444;
    color: white;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 4px;
    font-family: var(--font-body);
    text-transform: uppercase;
}

.product-description {
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.option-group {
    margin-bottom: 2rem;
}

.option-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

.size-selector {
    display: flex;
    gap: 1rem;
}

.size-btn {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.2s ease;
}

.size-btn:hover,
.size-btn.active {
    background: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
}

.product-actions {
    margin-bottom: 3rem;
}

.btn-add-cart {
    width: 100%;
    padding: 1.2rem;
}

.product-meta p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.product-meta span {
    color: var(--text-color);
    font-weight: 600;
    margin-right: 0.5rem;
}

/* Footer Container */
.footer {
    background: var(--bg-color);
    padding: 6rem 2rem 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
}

.brand-desc {
    color: var(--text-muted);
    margin: 1.5rem 0;
    max-width: 300px;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 350px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
    font-family: var(--font-body);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: var(--text-color);
    color: black;
    border: none;
    font-family: var(--font-heading);
    cursor: pointer;
    text-transform: uppercase;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-logo-icon {
    height: 50px;
    width: auto;
}

.footer-logo-text {
    height: 40px;
    width: auto;
    filter: invert(1);
}

.footer-links {
    display: flex;
    gap: 6rem;
    flex-wrap: wrap;
}

.link-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-family: var(--font-heading);
}

.link-column a {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.link-column a:hover {
    color: var(--text-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {

    /* General Mobile Adjustments */
    body {
        font-size: 14px;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo img {
        height: 35px;
    }

    .nav-links {
        display: none;
    }

    .nav-icons {
        gap: 1rem;
    }

    .nav-icons .icon {
        font-size: 1.2rem;
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Hero Section */
    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero-content {
        bottom: 3rem;
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin: 1rem 0;
    }

    /* Buttons - Touch Friendly */
    .btn-primary {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        min-height: 48px;
        width: 100%;
        display: block;
    }

    .btn-secondary {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        min-height: 48px;
    }

    /* Section Headers */
    .section-header {
        padding: 2rem 1rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .section-header p {
        font-size: 0.9rem;
        max-width: 100%;
    }

    /* Product Grid */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .product-card {
        max-width: 100%;
    }

    /* Typography Section */
    .typography-content {
        padding: 3rem 1rem;
    }

    .typography-content h2 {
        font-size: 3rem;
    }

    /* About Section */
    .about-container {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image {
        height: 300px;
        width: 100%;
    }

    .about-text {
        padding: 2rem 1rem;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
        padding: 0 1rem;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
        height: 300px;
    }

    /* Contact Section */
    .contact-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }

    .contact-info h2 {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 2rem 1rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    /* Hamburger Menu */
    .hamburger {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        padding: 0.5rem;
    }

    /* Mobile Menu */
    .mobile-menu a {
        padding: 1.5rem 1rem;
        font-size: 1.2rem;
        min-height: 56px;
    }

    /* Cart Sidebar - Full Width */
    .cart-sidebar {
        width: 100%;
        right: -100%;
        padding: 1.5rem 1rem;
    }

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

    .cart-header h3 {
        font-size: 1.5rem;
    }

    .close-cart {
        font-size: 2rem;
        min-width: 44px;
        min-height: 44px;
    }

    /* Product Details Page */
    .product-details-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .product-gallery {
        height: 400px;
    }

    .product-info-col {
        padding: 1rem;
    }

    .product-title {
        font-size: 2rem;
    }

    .product-price {
        font-size: 1.5rem;
    }

    /* Size Selector - Touch Friendly */
    .size-selector {
        gap: 0.75rem;
    }

    .size-btn {
        min-width: 56px;
        min-height: 56px;
        font-size: 1rem;
    }

    /* Product Actions */
    .product-actions {
        margin-top: 2rem;
    }

    .btn-add-cart {
        width: 100%;
        padding: 1.25rem;
        font-size: 1rem;
        min-height: 56px;
    }

    /* Related Products */
    .related-products-section .product-grid {
        grid-template-columns: 1fr;
    }

    /* Size Guide Modal */
    .modal-content {
        width: 95%;
        margin: 1rem;
        max-height: 90vh;
        overflow-y: auto;
    }

    .size-table {
        font-size: 0.85rem;
    }

    /* Search Overlay */
    .search-container input {
        font-size: 1.2rem;
        padding: 1.25rem;
    }

    .btn-search-submit {
        padding: 1.25rem 2rem;
        min-height: 56px;
    }

    /* Announcement Bar */
    .announcement-bar {
        font-size: 0.7rem;
        padding: 0.75rem 0.5rem;
    }
}

/* Extra Small Phones */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .product-title {
        font-size: 1.75rem;
    }

    .about-text h2,
    .contact-info h2 {
        font-size: 2rem;
    }

    .typography-content h2 {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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