/* Global Styles */
:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #333333;
    --text-color: #ffffff;
    --transition-speed: 0.3s;
    --heading-font: 'Orbitron', sans-serif;
    --body-font: 'Inter', 'Montserrat', sans-serif;
    --background-dark: #000000;
    --background-light: #111111;
    --border-color: #333333;
    --about-bg: #0a0a0a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--body-font);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-dark);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 1px;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Navbar Styles */
.navbar {
    direction: ltr;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background-color var(--transition-speed);
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.nav-logo {
    width: 200px;
}

.nav-links {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.cart-icon-container {
    width: 200px;
    display: flex;
    justify-content: flex-end;
}

.nav-logo {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

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

.nav-links a {
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    transition: color var(--transition-speed);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.dropdown {
    position: relative;
    display: inline-block;
    margin-left: 2rem; 
}

.dropbtn {
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-speed);
    cursor: pointer;
    display: flex; 
    align-items: center;
    gap: 5px;
}

.dropbtn:hover {
    color: var(--accent-color);
}

.dropdown-content {
    display: none; 
    position: absolute;
    background-color: rgba(0, 0, 0, 0.95); 
    backdrop-filter: blur(10px); 
    min-width: 200px; 
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    z-index: 1001; 
    border-radius: 4px;
    padding: 10px 0;
    margin-top: 5px; 
    left: 50%; 
    transform: translateX(-50%);
}

.dropdown-content a {
    color: var(--text-color); 
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: var(--body-font); 
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-speed);
    white-space: nowrap; 
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1); 
    color: var(--accent-color); 
    transform: translateX(5px); 
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media (max-width: 768px) {
    .nav-links .dropdown {
        margin-left: 0;
        display: block; 
    }
    .dropdown-content {
        position: static; 
        transform: none;
        width: 100%; 
        box-shadow: none;
        border: none;
        background: transparent; 
        backdrop-filter: none;
        padding: 0;
        margin-top: 0;
    }
    .dropdown-content a {
        padding: 10px 20px; 
        font-size: 1rem;
        color: var(--text-color); 
    }
}

.landing {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: var(--background-dark);
}

.landing-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.left-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 3;
}

.right-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 3;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.logo-container {
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-logo {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.shop-now-btn {
    display: inline-block;
    padding: 1.2rem 4rem;
    font-size: 1.2rem;
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition-speed);
    border-radius: 4px;
    cursor: pointer;
    min-width: 200px;
    text-align: center;
}

.shop-now-btn:hover {
    background: var(--text-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.landing-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.landing-social .social-icon {
    color: var(--text-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--text-color);
    border-radius: 50%;
    background: transparent;
}

.landing-social .social-icon:hover {
    background: var(--text-color);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-dark);
    z-index: 1;
    opacity: 0.9;
}

.about {
    padding: 100px 5%;
    background-color: var(--about-bg);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.5;
    pointer-events: none;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-text p {
    font-family: var(--body-font);
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.about-images {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.parallax-image {
    width: 400px;
    height: 600px;
    background-color: #222;
    background-size: cover;
    background-position: center;
}

.collections {
    padding: 100px 5%;
    background-color: var(--background-dark);
}

.collections h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.products-grid {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.product-card {
    background: #000000;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 20px;
    text-align: center;
    background: #000;
    color: #fff;
}

.product-info h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: #fff;
    font-family: var(--heading-font);
    letter-spacing: 1px;
}

.product-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.size-selector {
    margin: 15px 0;
}

.size-squares {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 15px;
}

.size-square {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-color);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
}

.size-square:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.size-square.selected {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-to-cart-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.contact {
    padding: 100px 5%;
    background-color: var(--background-dark);
}

.contact h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 3rem;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    font-size: 1rem;
    border-radius: 4px;
    transition: all var(--transition-speed);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-color);
}

.subscribe-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-speed);
    border-radius: 4px;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: var(--text-color);
    color: var(--background-dark);
}

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

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

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    font-size: 1rem;
    transition: all var(--transition-speed);
    font-family: var(--body-font);
    letter-spacing: 0.5px;
}

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

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    padding: 1rem;
    background: var(--text-color);
    color: var(--primary-color);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-speed);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-form button:hover {
    background: var(--accent-color);
    color: var(--text-color);
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-icon {
    color: var(--text-color);
    font-size: 2rem;
    transition: transform var(--transition-speed);
}

.social-icon:hover {
    transform: translateY(-5px);
}

footer {
    padding: 4rem 5% 2rem;
    background-color: var(--background-dark);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    direction: ltr;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-section h3 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-color);
}

.footer-description {
    font-size: 0.9rem;
    color: var(--accent-color);
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-links a {
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-color);
    text-decoration: none;
    transition: all var(--transition-speed);
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateX(5px);
}

.footer-section .social-links {
    display: flex;
    gap: 1.5rem;
}

.footer-section .social-icon {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all var(--transition-speed);
    opacity: 0.8;
}

.footer-section .social-icon:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: var(--accent-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        align-items: center;
    }

    .footer-section .social-links {
        justify-content: center;
    }
}

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

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

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .contact-container {
        flex-direction: column;
    }

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

    .about-images {
        flex-direction: column;
    }

    .parallax-image {
        width: 100%;
        height: 400px;
    }

    .newsletter-form .form-group {
        flex-direction: column;
    }

    .subscribe-btn {
        width: 100%;
    }

    .footer-social {
        margin-top: 1.5rem;
    }

    .footer-social .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

/* Collections Page Styles */
.collections-header {
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--background-dark);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.collections-header h1 {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.collections-header p {
    font-family: var(--body-font);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--accent-color);
}

.collections-page {
    padding: 5rem 5%;
    background-color: var(--background-dark);
    min-height: 60vh;
}

.collections-page .products-grid {
    margin-bottom: 4rem;
}

.product-card {
    background: #000000;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.product-image {
    width: 100%;
    height: 300px;
    background-color: #222;
    margin-bottom: 1rem;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

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

.product-card h3 {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.product-card p {
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-color);
}

.back-to-home {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.back-btn:hover {
    background: var(--text-color);
    color: var(--primary-color);
    transform: translateX(-5px);
}

/* Update Collections Section on Homepage */
.collections-preview {
    text-align: center;
    padding: 100px 5%;
    background-color: var(--background-dark);
}

.collections-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.view-collection-btn {
    display: inline-block;
    padding: 1.2rem 4rem;
    font-size: 1.2rem;
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 3rem;
    transition: all var(--transition-speed);
}

.view-collection-btn:hover {
    background: var(--text-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* Seasons Grid Styles */
.seasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.season-card {
    position: relative;
    height: 300px;
    text-decoration: none;
    color: var(--text-color);
    overflow: hidden;
    border-radius: 8px;
    transition: transform var(--transition-speed);
    background-color: var(--background-dark);
}

.season-card:hover {
    transform: translateY(-10px);
}

.season-content {
    position: relative;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.season-content.summer {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url('assets/summer-bg.jpg');
}

.season-content.winter {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url('assets/winter-bg.jpg');
}

.season-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.season-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.season-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
    transition: opacity var(--transition-speed);
}

.season-card:hover .season-overlay {
    opacity: 0.8;
}

/* Collection Pages Styles */
.collection-header {
    text-align: center;
    padding: 100px 20px 50px;
    background-color: #000;
    color: #fff;
}

.collection-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.collection-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.collection-products {
    padding: 5rem 5%;
    background-color: var(--background-dark);
}

.category-section {
    margin-bottom: 5rem;
}

.category-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: rgba(51, 51, 51, 0.1);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.product-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-overlay .price {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-to-collections {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.back-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s;
}

.back-btn:hover {
    background: var(--text-color);
    color: var(--background-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.back-btn:hover::before {
    left: 100%;
}

.back-btn i {
    font-size: 1.2rem;
    transition: transform var(--transition-speed);
}

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

.back-btn span {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .back-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .seasons-grid {
        grid-template-columns: 1fr;
    }

    .season-card {
        height: 300px;
    }

    .collection-header h1 {
        font-size: 2.5rem;
    }

    .category-section h2 {
        font-size: 1.8rem;
    }
}

/* Responsive Landing Page */
@media (max-width: 768px) {
    .landing-content {
        flex-direction: column-reverse;
        padding: 1rem;
    }

    .left-content,
    .right-content {
        width: 100%;
        padding: 1rem;
    }

    .cta-content {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .logo-container {
        max-width: 300px;
        margin-bottom: 2rem;
    }

    .main-logo {
        max-height: 40vh;
    }

    .shop-now-btn {
        padding: 1rem 3rem;
        font-size: 1rem;
        min-width: 180px;
    }

    .landing-social {
        justify-content: center;
    }
}

/* Cart Modal Styles */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.cart-modal.active {
    opacity: 1;
    visibility: visible;
}

.cart-content {
    background-color: var(--background-dark);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    max-width: 400px;
    width: 90%;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
    transition: color var(--transition-speed);
}

.close-modal:hover {
    color: var(--accent-color);
}

.cart-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.cart-btn {
    padding: 12px 25px;
    border: 2px solid var(--text-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    background-color: var(--background-dark);
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.cart-btn:hover {
    background-color: var(--text-color);
    color: var(--background-dark);
    transform: translateY(-2px);
}

.cart-btn.continue {
    background-color: var(--background-dark);
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.cart-btn.proceed {
    background-color: var(--background-dark);
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.cart-btn.continue:hover,
.cart-btn.proceed:hover {
    background-color: var(--text-color);
    color: var(--background-dark);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* Checkout Page Styles */
.checkout-section {
    padding: 120px 5% 60px;
    min-height: 100vh;
    background-color: var(--background-dark);
    color: var(--text-color);
}

.checkout-container {
    max-width: 1000px;
    margin: 0 auto;
}

.checkout-container h1 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-color);
}

.order-summary {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.order-summary h2 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* Cart Items Container */
.cart-items {
    margin-bottom: 2rem;
}

/* Individual Cart Item */
.cart-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(-5px);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.cart-item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.info-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.info-value {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.total-row {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.total-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.remove-item {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 5px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item:hover {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

.empty-cart-message {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Total Amount Section */
.total-amount {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.shipping,
.total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    font-size: 1.2rem;
    color: var(--text-color);
}

.total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 1.4rem;
    font-weight: 600;
}

/* Empty Cart Message */
.empty-cart-message {
    text-align: center;
    padding: 2rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .order-summary {
        padding: 1.5rem;
    }

    .cart-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
    }

    .cart-item-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .cart-item-details {
        text-align: center;
    }

    .remove-item {
        margin-top: 0.5rem;
    }
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    background: rgba(51, 51, 51, 0.1);
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.form-section h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-color);
    font-size: 1rem;
    transition: all var(--transition-speed);
    border-radius: 4px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-options {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
}

.payment-option {
    flex: 1;
    min-width: 0;
}

.payment-option-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgb(0, 0, 0);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.payment-option-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.payment-option-label:hover::before {
    transform: translateX(100%);
}

.payment-option-label:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.payment-option-label.selected {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--text-color);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.payment-option-label i {
    font-size: 1.8rem;
    color: var(--text-color);
    transition: transform var(--transition-speed);
}

.payment-option-label:hover i {
    transform: scale(1.1);
}

.payment-option-label span {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-color);
}

.payment-instructions {
    display: none;
    background: rgba(51, 51, 51, 0.2);
    padding: 2rem;
    margin-top: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-speed);
    width: 100%;
    backdrop-filter: blur(10px);
}

.payment-instructions.active {
    display: block;
    opacity: 1;
    max-height: 800px;
    margin-top: 1.5rem;
}

.payment-instructions h4 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-instructions p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.6;
}

.recipient-number {
    background: linear-gradient(45deg, rgb(0, 0, 0), rgb(0, 0, 0));
    padding: 1.2rem;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 1.5rem 0;
    text-align: center;
    border: 2px solid rgb(54, 52, 52);
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgb(0, 0, 0);
}

.vodafone-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.vodafone-fields input {
    width: 100%;
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1.1rem;
    transition: all var(--transition-speed);
    font-family: var(--body-font);
}

.vodafone-fields input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.vodafone-fields input:focus {
    outline: none;
    border-color: var(--text-color);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.vodafone-fields input:hover {
    border-color: rgba(0, 0, 0, 0.5);
}

/* Add validation styles */
.vodafone-fields input:invalid {
    border-color: #ff4444;
}

.vodafone-fields input:valid {
    border-color: #ffffff;
}

/* Responsive styles */
@media (max-width: 768px) {
    .vodafone-fields {
        gap: 1rem;
    }

    .vodafone-fields input {
        padding: 1rem;
        font-size: 1rem;
    }

    .vodafone-fields input::placeholder {
        font-size: 0.9rem;
    }
}

.file-upload-container {
    margin-top: 1rem;
}

.file-upload-label {
    display: block;
    padding: 1.5rem;
    background: rgb(0, 0, 0);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.file-upload-label:hover {
    border-color: var(--text-color);
    background: rgba(255, 255, 255, 0.1);
}

.file-upload-label i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.file-upload-label span {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--accent-color);
}

.file-upload-input {
    display: none;
}

@media (max-width: 768px) {
    .payment-options {
        flex-direction: column;
        gap: 1rem;
    }

    .payment-option-label {
        padding: 1.2rem;
        font-size: 0.9rem;
    }

    .payment-option-label i {
        font-size: 1.5rem;
    }

    .payment-instructions {
        padding: 1.5rem;
    }

    .payment-instructions h4 {
        font-size: 1.2rem;
    }

    .recipient-number {
        font-size: 1.4rem;
        padding: 1rem;
    }

    .vodafone-input {
        padding: 1rem;
    }

    .file-upload-label {
        padding: 1.2rem;
    }

    .file-upload-label i {
        font-size: 1.8rem;
    }
}

.checkout-btn {
    width: 100%;
    /* Make button full width */
    padding: 1.2rem;
    background: var(--text-color);
    color: var(--primary-color);
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all var(--transition-speed);
    margin-top: 2rem;
    border-radius: 4px;
}

.checkout-btn:hover {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .checkout-section {
        padding: 100px 5% 40px;
    }

    .checkout-container h1 {
        font-size: 2rem;
    }

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

    .payment-options {
        grid-template-columns: 1fr;
    }

    .form-section {
        padding: 1.5rem;
    }

    .cart-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cart-item-image {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .cart-item-details {
        text-align: center;
    }

    .remove-item {
        margin-top: 0.5rem;
    }
}

/* Product Card Styles */
.product-card {
    background: #000000;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.product-image {
    width: 100%;
    height: 300px;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-card h3 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.product-card p {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Products Grid Layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .product-image {
        height: 250px;
    }

    .product-card {
        padding: 1rem;
    }

    .product-card h3 {
        font-size: 1.1rem;
    }

    .product-card p {
        font-size: 1rem;
    }

    .add-to-cart-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Last Collection Theme */
.latest-theme {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('assets/last-collection-bg.jpg') center/cover;
    color: var(--text-color);
    text-align: center;
    padding: 150px 5% 100px;
    position: relative;
}

/* Collection Links Section */
.collection-links {
    text-align: center;
    padding: 4rem 0;
    margin-top: 4rem;
}

.collection-links h2 {
    font-family: var(--heading-font);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.collection-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.collection-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed);
    min-width: 250px;
    justify-content: center;
}

.collection-btn i {
    font-size: 1.5rem;
}

.collection-btn:hover {
    background: var(--text-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.collection-btn.summer {
    border-color: #ff6b6b;
}

.collection-btn.summer:hover {
    background: #ff6b6b;
}

.collection-btn.winter {
    border-color: #4dabf7;
}

.collection-btn.winter:hover {
    background: #4dabf7;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .collection-buttons {
        flex-direction: column;
        align-items: center;
    }

    .collection-btn {
        width: 100%;
        max-width: 300px;
    }

    .latest-theme {
        padding: 120px 5% 80px;
    }
}

.card-payment-form {
    margin-top: 1.5rem;
}

.card-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.card-input {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-color);
    font-size: 1rem;
    transition: all var(--transition-speed);
    border-radius: 4px;
}

.card-input:focus {
    outline: none;
    border-color: var(--text-color);
}

.card-type-icon {
    position: absolute;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-type-icon i {
    font-size: 1.5rem;
    display: none;
    color: var(--text-color);
}

.fa-cc-visa {
    color: #1a1f71;
}

.fa-cc-mastercard {
    color: #eb001b;
}

.fa-cc-amex {
    color: #006fcf;
}

.fa-cc-discover {
    color: #ff6000;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

    .card-type-icon i {
        font-size: 1.2rem;
    }
}

.payment-fields {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-speed);
}

.payment-fields.active {
    opacity: 1;
    max-height: 500px;
    margin-top: 1.5rem;
}

.form-select {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-color);
    font-size: 1rem;
    transition: all var(--transition-speed);
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 1rem) center;
    padding-right: 2.5rem;
}

.form-select:focus {
    outline: none;
    border-color: var(--text-color);
}

.form-select:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.form-select option {
    background-color: var(--background-dark);
    color: var(--text-color);
    padding: 1rem;
}

/* Cart Icon Styles */
.cart-icon-container {
    position: relative;
    margin-left: 25px;
}

.cart-icon {
    position: relative;
    color: var(--text-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: color var(--transition-speed);
}

.cart-icon:hover {
    color: var(--accent-color);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-color);
    color: var(--text-color);
    font-size: 0.75rem;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    transition: all var(--transition-speed);
}

.cart-badge:empty {
    display: none;
}

/* Update navbar styles to accommodate cart icon */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--background-dark);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-speed);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cart-icon-container {
        margin-left: 0;
    }
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 4px;
    z-index: 9999;
    font-family: var(--body-font);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInRight 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    min-width: 300px;
}

.toast.success {
    background: #4CAF50;
    color: #ffffff;
    border: 1px solid #45a049;
}

.toast.error {
    background: #f44336;
    color: #ffffff;
    border: 1px solid #da190b;
}
.toast.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}


.toast i {
    font-size: 1.2rem;
}

.toast span {
    font-weight: 500;
    letter-spacing: 0.5px;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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

/* Contact Page Styles */
.contact-page {
    padding: 120px 5% 60px;
    min-height: 100vh;
    background-color: var(--background-dark);
}

.contact-page h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding: 2rem;
    background: rgba(51, 51, 51, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

.social-links-container {
    margin-top: 3rem;
}

.social-links-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.contact-page .social-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-page .social-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all var(--transition-speed);
}

.contact-page .social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.contact-page .social-icon span {
    font-size: 1rem;
}

.contact-form-container {
    padding: 2rem;
    background: rgba(51, 51, 51, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

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

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-color);
    font-size: 1rem;
    border-radius: 4px;
    transition: all var(--transition-speed);
}

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

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all var(--transition-speed);
    border-radius: 4px;
}

.submit-btn:hover {
    background: var(--text-color);
    color: var(--background-dark);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-page h1 {
        font-size: 2.5rem;
    }

    .contact-info,
    .contact-form-container {
        padding: 1.5rem;
    }
}

/* Page Header Styles */
.page-header {
    padding: 120px 5% 40px;
    text-align: center;
    background-color: var(--background-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    position: relative;
}

.page-header h1 {
    font-family: var(--heading-font);
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--text-color);
    text-align: center;
    position: relative;
    z-index: 1;
}

.header-line {
    width: 0;
    height: 3px;
    background: var(--text-color);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    transition: width 1s ease;
    animation: lineExpand 1.5s ease forwards;
}

@keyframes lineExpand {
    0% {
        width: 0;
    }

    100% {
        width: 300px;
    }
}

.header-line::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.3;
    }

    50% {
        transform: scaleY(1.5);
        opacity: 0.6;
    }
}

/* Add a subtle gradient overlay */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 5% 30px;
        min-height: 30vh;
    }

    .page-header h1 {
        font-size: 2.8rem;
        letter-spacing: 3px;
    }

    @keyframes lineExpand {
        0% {
            width: 0;
        }

        100% {
            width: 140px;
        }
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
}

/* About Page Styles */
.about-section {
    padding: 60px 5% 80px;
    background-color: var(--background-dark);
    min-height: calc(100vh - 300px);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    background: rgba(51, 51, 51, 0.1);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: transform var(--transition-speed);
}

.about-grid:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.about-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.about-text h2 {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-color);
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.about-grid:hover .about-image img {
    transform: scale(1.05);
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    margin-top: 60px;
}

.stat-item {
    padding: 40px 30px;
    background: rgba(51, 51, 51, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all var(--transition-speed);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.stat-item p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.olympus-link {
    color: #4CAF50;
    text-decoration: none;
    transition: all var(--transition-speed);
    font-weight: 600;
}

.olympus-link:hover {
    color: #45a049;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 5% 30px;
    }

    .page-header h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
}

/* Global Styles */
:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #333333;
    --text-color: #ffffff;
    --transition-speed: 0.3s;
    --heading-font: 'Orbitron', sans-serif;
    --body-font: 'Inter', 'Montserrat', sans-serif;
    --background-dark: #000000;
    --background-light: #111111;
    --border-color: #333333;
    --about-bg: #0a0a0a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--body-font);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-dark);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 1px;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Navbar Styles */
.navbar {
    direction: ltr;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background-color var(--transition-speed);
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.nav-logo {
    width: 200px;
}

.nav-links {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.cart-icon-container {
    width: 200px;
    display: flex;
    justify-content: flex-end;
}

.nav-logo {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

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

.nav-links a {
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    transition: color var(--transition-speed);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
    margin-left: 2rem; /* Maintain spacing with other nav links */
}

.dropbtn {
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-speed);
    cursor: pointer;
    display: flex; /* Use flexbox for icon alignment */
    align-items: center;
    gap: 5px; /* Space between text and icon */
}

.dropbtn:hover {
    color: var(--accent-color);
}

.dropdown-content {
    display: none; /* Hidden by default */
    position: absolute;
    background-color: rgba(0, 0, 0, 0.95); /* Dark background with transparency */
    backdrop-filter: blur(10px); /* Blur effect */
    min-width: 200px; /* Increased width slightly */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    z-index: 1001; /* Above other content */
    border-radius: 4px;
    padding: 10px 0;
    margin-top: 5px; /* Small gap below the button */
    left: 50%; /* Center dropdown relative to dropbtn */
    transform: translateX(-50%);
}

.dropdown-content a {
    color: var(--text-color); 
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: var(--heading-font); 
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-speed);
    white-space: nowrap; 
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1); 
    color: var(--accent-color);
    transform: translateX(5px); 
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

@media (max-width: 768px) {
    .nav-links .dropdown {
        margin-left: 0;
        display: block; 
    }
    .dropdown-content {
        position: static; /* Remove absolute positioning on mobile */
        transform: none;
        width: 100%; /* Full width on mobile */
        box-shadow: none;
        border: none;
        background: transparent; /* Transparent background on mobile */
        backdrop-filter: none;
        padding: 0;
        margin-top: 0;
    }
    .dropdown-content a {
        padding: 10px 20px; /* Adjust padding for mobile */
        font-size: 1rem;
        color: var(--text-color); /* Ensure color is correct on mobile */
    }
}

/* Landing Page Styles */
.landing {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: var(--background-dark);
}

.landing-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.left-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 3;
}

.right-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 3;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.logo-container {
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-logo {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.shop-now-btn {
    display: inline-block;
    padding: 1.2rem 4rem;
    font-size: 1.2rem;
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition-speed);
    border-radius: 4px;
    cursor: pointer;
    min-width: 200px;
    text-align: center;
}

.shop-now-btn:hover {
    background: var(--text-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.landing-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.landing-social .social-icon {
    color: var(--text-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--text-color);
    border-radius: 50%;
    background: transparent;
}

.landing-social .social-icon:hover {
    background: var(--text-color);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-dark);
    z-index: 1;
    opacity: 0.9;
}

/* About Section Styles */
.about {
    padding: 100px 5%;
    background-color: var(--about-bg);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.5;
    pointer-events: none;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-text p {
    font-family: var(--body-font);
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.about-images {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.parallax-image {
    width: 400px;
    height: 600px;
    background-color: #222;
    background-size: cover;
    background-position: center;
}

/* Collections Section Styles */
.collections {
    padding: 100px 5%;
    background-color: var(--background-dark);
}

.collections h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.products-grid {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.product-card {
    background: #000000;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 20px;
    text-align: center;
    background: #000;
    color: #fff;
}

.product-info h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: #fff;
    font-family: var(--heading-font);
    letter-spacing: 1px;
}

.product-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.size-selector {
    margin: 15px 0;
}

.size-squares {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 15px;
}

.size-square {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-color);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
}

.size-square:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.size-square.selected {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-to-cart-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* Contact Section Styles */
.contact {
    padding: 100px 5%;
    background-color: var(--background-dark);
}

.contact h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 3rem;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    font-size: 1rem;
    border-radius: 4px;
    transition: all var(--transition-speed);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-color);
}

.subscribe-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-speed);
    border-radius: 4px;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: var(--text-color);
    color: var(--background-dark);
}

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

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

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    font-size: 1rem;
    transition: all var(--transition-speed);
    font-family: var(--body-font);
    letter-spacing: 0.5px;
}

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

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    padding: 1rem;
    background: var(--text-color);
    color: var(--primary-color);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-speed);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-form button:hover {
    background: var(--accent-color);
    color: var(--text-color);
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-icon {
    color: var(--text-color);
    font-size: 2rem;
    transition: transform var(--transition-speed);
}

.social-icon:hover {
    transform: translateY(-5px);
}

/* Footer Styles */
footer {
    padding: 4rem 5% 2rem;
    background-color: var(--background-dark);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    direction: ltr;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-section h3 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-color);
}

.footer-description {
    font-size: 0.9rem;
    color: var(--accent-color);
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-links a {
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-color);
    text-decoration: none;
    transition: all var(--transition-speed);
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateX(5px);
}

.footer-section .social-links {
    display: flex;
    gap: 1.5rem;
}

.footer-section .social-icon {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all var(--transition-speed);
    opacity: 0.8;
}

.footer-section .social-icon:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: var(--accent-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        align-items: center;
    }

    .footer-section .social-links {
        justify-content: center;
    }
}

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

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

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .contact-container {
        flex-direction: column;
    }

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

    .about-images {
        flex-direction: column;
    }

    .parallax-image {
        width: 100%;
        height: 400px;
    }

    .newsletter-form .form-group {
        flex-direction: column;
    }

    .subscribe-btn {
        width: 100%;
    }

    .footer-social {
        margin-top: 1.5rem;
    }

    .footer-social .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

/* Collections Page Styles */
.collections-header {
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--background-dark);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.collections-header h1 {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.collections-header p {
    font-family: var(--body-font);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--accent-color);
}

.collections-page {
    padding: 5rem 5%;
    background-color: var(--background-dark);
    min-height: 60vh;
}

.collections-page .products-grid {
    margin-bottom: 4rem;
}

.product-card {
    background: #000000;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.product-image {
    width: 100%;
    height: 300px;
    background-color: #222;
    margin-bottom: 1rem;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

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

.product-card h3 {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.product-card p {
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-color);
}

.back-to-home {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.back-btn:hover {
    background: var(--text-color);
    color: var(--primary-color);
    transform: translateX(-5px);
}

/* Update Collections Section on Homepage */
.collections-preview {
    text-align: center;
    padding: 100px 5%;
    background-color: var(--background-dark);
}

.collections-preview h2 {
        font-size: 2.5rem;
    margin-bottom: 2rem;
}

.view-collection-btn {
    display: inline-block;
    padding: 1.2rem 4rem;
    font-size: 1.2rem;
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 3rem;
    transition: all var(--transition-speed);
}

.view-collection-btn:hover {
    background: var(--text-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* Seasons Grid Styles */
.seasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.season-card {
    position: relative;
    height: 300px;
    text-decoration: none;
    color: var(--text-color);
    overflow: hidden;
    border-radius: 8px;
    transition: transform var(--transition-speed);
    background-color: var(--background-dark);
}

.season-card:hover {
    transform: translateY(-10px);
}

.season-content {
    position: relative;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.season-content.summer {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url('assets/summer-bg.jpg');
}

.season-content.winter {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url('assets/winter-bg.jpg');
}

.season-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.season-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.season-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
    transition: opacity var(--transition-speed);
}

.season-card:hover .season-overlay {
    opacity: 0.8;
}

/* Collection Pages Styles */
.collection-header {
    text-align: center;
    padding: 100px 20px 50px;
    background-color: #000;
    color: #fff;
}

.collection-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.collection-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.collection-products {
    padding: 5rem 5%;
    background-color: var(--background-dark);
}

.category-section {
    margin-bottom: 5rem;
}

.category-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: rgba(51, 51, 51, 0.1);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.product-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-overlay .price {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-to-collections {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.back-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s;
}

.back-btn:hover {
    background: var(--text-color);
    color: var(--background-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.back-btn:hover::before {
    left: 100%;
}

.back-btn i {
    font-size: 1.2rem;
    transition: transform var(--transition-speed);
}

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

.back-btn span {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .back-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .seasons-grid {
        grid-template-columns: 1fr;
    }

    .season-card {
        height: 300px;
    }

    .collection-header h1 {
        font-size: 2.5rem;
    }

    .category-section h2 {
        font-size: 1.8rem;
    }
}

/* Responsive Landing Page */
@media (max-width: 768px) {
    .landing-content {
        flex-direction: column-reverse;
        padding: 1rem;
    }

    .left-content,
    .right-content {
        width: 100%;
        padding: 1rem;
    }

    .cta-content {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .logo-container {
        max-width: 300px;
        margin-bottom: 2rem;
    }

    .main-logo {
        max-height: 40vh;
    }

    .shop-now-btn {
        padding: 1rem 3rem;
        font-size: 1rem;
        min-width: 180px;
    }

    .landing-social {
        justify-content: center;
    }
}

/* Cart Modal Styles */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.cart-modal.active {
    opacity: 1;
    visibility: visible;
}

.cart-content {
    background-color: var(--background-dark);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    max-width: 400px;
    width: 90%;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
    transition: color var(--transition-speed);
}

.close-modal:hover {
    color: var(--accent-color);
}

.cart-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.cart-btn {
    padding: 12px 25px;
    border: 2px solid var(--text-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    background-color: var(--background-dark);
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.cart-btn:hover {
    background-color: var(--text-color);
    color: var(--background-dark);
    transform: translateY(-2px);
}

.cart-btn.continue {
    background-color: var(--background-dark);
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.cart-btn.proceed {
    background-color: var(--background-dark);
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.cart-btn.continue:hover,
.cart-btn.proceed:hover {
    background-color: var(--text-color);
    color: var(--background-dark);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* Checkout Page Styles */
.checkout-section {
    padding: 120px 5% 60px;
    min-height: 100vh;
    background-color: var(--background-dark);
    color: var(--text-color);
}

.checkout-container {
    max-width: 1000px;
    margin: 0 auto;
}

.checkout-container h1 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-color);
}

.order-summary {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.order-summary h2 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* Cart Items Container */
.cart-items {
    margin-bottom: 2rem;
}

/* Individual Cart Item */
.cart-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(-5px);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.cart-item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.info-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.info-value {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.total-row {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.total-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.remove-item {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 5px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item:hover {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

.empty-cart-message {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Total Amount Section */
.total-amount {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.shipping,
.total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    font-size: 1.2rem;
    color: var(--text-color);
}

.total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 1.4rem;
    font-weight: 600;
}

/* Empty Cart Message */
.empty-cart-message {
    text-align: center;
    padding: 2rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .order-summary {
        padding: 1.5rem;
    }

    .cart-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
    }

    .cart-item-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .cart-item-details {
        text-align: center;
    }

    .remove-item {
        margin-top: 0.5rem;
    }
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    background: rgba(51, 51, 51, 0.1);
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.form-section h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-color);
    font-size: 1rem;
    transition: all var(--transition-speed);
    border-radius: 4px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-options {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
}

.payment-option {
    flex: 1;
    min-width: 0;
}

.payment-option-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgb(0, 0, 0);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.payment-option-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.payment-option-label:hover::before {
    transform: translateX(100%);
}

.payment-option-label:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.payment-option-label.selected {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--text-color);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.payment-option-label i {
    font-size: 1.8rem;
    color: var(--text-color);
    transition: transform var(--transition-speed);
}

.payment-option-label:hover i {
    transform: scale(1.1);
}

.payment-option-label span {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-color);
}

.payment-instructions {
    display: none;
    background: rgba(51, 51, 51, 0.2);
    padding: 2rem;
    margin-top: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-speed);
    width: 100%;
    backdrop-filter: blur(10px);
}

.payment-instructions.active {
    display: block;
    opacity: 1;
    max-height: 800px;
    margin-top: 1.5rem;
}

.payment-instructions h4 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-instructions p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.6;
}

.recipient-number {
    background: linear-gradient(45deg, rgb(0, 0, 0), rgb(0, 0, 0));
    padding: 1.2rem;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 1.5rem 0;
    text-align: center;
    border: 2px solid rgb(54, 52, 52);
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgb(0, 0, 0);
}

.vodafone-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.vodafone-fields input {
    width: 100%;
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1.1rem;
    transition: all var(--transition-speed);
    font-family: var(--body-font);
}

.vodafone-fields input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.vodafone-fields input:focus {
    outline: none;
    border-color: var(--text-color);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.vodafone-fields input:hover {
    border-color: rgba(0, 0, 0, 0.5);
}

/* Add validation styles */
.vodafone-fields input:invalid {
    border-color: #ff4444;
}

.vodafone-fields input:valid {
    border-color: #ffffff;
}

/* Responsive styles */
@media (max-width: 768px) {
    .vodafone-fields {
        gap: 1rem;
    }

    .vodafone-fields input {
        padding: 1rem;
        font-size: 1rem;
    }

    .vodafone-fields input::placeholder {
        font-size: 0.9rem;
    }
}

.file-upload-container {
    margin-top: 1rem;
}

.file-upload-label {
    display: block;
    padding: 1.5rem;
    background: rgb(0, 0, 0);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.file-upload-label:hover {
    border-color: var(--text-color);
    background: rgba(255, 255, 255, 0.1);
}

.file-upload-label i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.file-upload-label span {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--accent-color);
}

.file-upload-input {
    display: none;
}

@media (max-width: 768px) {
    .payment-options {
        flex-direction: column;
        gap: 1rem;
    }

    .payment-option-label {
        padding: 1.2rem;
        font-size: 0.9rem;
    }

    .payment-option-label i {
        font-size: 1.5rem;
    }

    .payment-instructions {
        padding: 1.5rem;
    }

    .payment-instructions h4 {
        font-size: 1.2rem;
    }

    .recipient-number {
        font-size: 1.4rem;
        padding: 1rem;
    }

    .vodafone-input {
        padding: 1rem;
    }

    .file-upload-label {
        padding: 1.2rem;
    }

    .file-upload-label i {
        font-size: 1.8rem;
    }
}

.checkout-btn {
    width: 100%;
    /* Make button full width */
    padding: 1.2rem;
    background: var(--text-color);
    color: var(--primary-color);
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all var(--transition-speed);
    margin-top: 2rem;
    border-radius: 4px;
}

.checkout-btn:hover {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .checkout-section {
        padding: 100px 5% 40px;
    }

    .checkout-container h1 {
        font-size: 2rem;
    }

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

    .payment-options {
        grid-template-columns: 1fr;
    }

    .form-section {
        padding: 1.5rem;
    }

    .cart-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cart-item-image {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .cart-item-details {
        text-align: center;
    }

    .remove-item {
        margin-top: 0.5rem;
    }
}

/* Product Card Styles */
.product-card {
    background: #000000;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.product-image {
    width: 100%;
    height: 300px;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-card h3 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.product-card p {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Products Grid Layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .product-image {
        height: 250px;
    }

    .product-card {
        padding: 1rem;
    }

    .product-card h3 {
        font-size: 1.1rem;
    }

    .product-card p {
        font-size: 1rem;
    }

    .add-to-cart-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Last Collection Theme */
.latest-theme {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('assets/last-collection-bg.jpg') center/cover;
    color: var(--text-color);
    text-align: center;
    padding: 150px 5% 100px;
    position: relative;
}

/* Collection Links Section */
.collection-links {
    text-align: center;
    padding: 4rem 0;
    margin-top: 4rem;
}

.collection-links h2 {
    font-family: var(--heading-font);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.collection-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.collection-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed);
    min-width: 250px;
    justify-content: center;
}

.collection-btn i {
    font-size: 1.5rem;
}

.collection-btn:hover {
    background: var(--text-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.collection-btn.summer {
    border-color: #ff6b6b;
}

.collection-btn.summer:hover {
    background: #ff6b6b;
}

.collection-btn.winter {
    border-color: #4dabf7;
}

.collection-btn.winter:hover {
    background: #4dabf7;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .collection-buttons {
        flex-direction: column;
        align-items: center;
    }

    .collection-btn {
        width: 100%;
        max-width: 300px;
    }

    .latest-theme {
        padding: 120px 5% 80px;
    }
}

.card-payment-form {
    margin-top: 1.5rem;
}

.card-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.card-input {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-color);
    font-size: 1rem;
    transition: all var(--transition-speed);
    border-radius: 4px;
}

.card-input:focus {
    outline: none;
    border-color: var(--text-color);
}

.card-type-icon {
    position: absolute;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-type-icon i {
    font-size: 1.5rem;
    display: none;
    color: var(--text-color);
}

.fa-cc-visa {
    color: #1a1f71;
}

.fa-cc-mastercard {
    color: #eb001b;
}

.fa-cc-amex {
    color: #006fcf;
}

.fa-cc-discover {
    color: #ff6000;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

    .card-type-icon i {
        font-size: 1.2rem;
    }
}

.payment-fields {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-speed);
}

.payment-fields.active {
    opacity: 1;
    max-height: 500px;
    margin-top: 1.5rem;
}

.form-select {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-color);
    font-size: 1rem;
    transition: all var(--transition-speed);
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 1rem) center;
    padding-right: 2.5rem;
}

.form-select:focus {
    outline: none;
    border-color: var(--text-color);
}

.form-select:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.form-select option {
    background-color: var(--background-dark);
    color: var(--text-color);
    padding: 1rem;
}

/* Cart Icon Styles */
.cart-icon-container {
    position: relative;
    margin-left: 2rem;
}

.cart-icon {
    position: relative;
    color: var(--text-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: color var(--transition-speed);
}

.cart-icon:hover {
    color: var(--accent-color);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-color);
    color: var(--text-color);
    font-size: 0.75rem;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    transition: all var(--transition-speed);
}

.cart-badge:empty {
    display: none;
}

/* Update navbar styles to accommodate cart icon */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--background-dark);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-speed);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cart-icon-container {
        margin-left: 0;
    }
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 4px;
    z-index: 9999;
    font-family: var(--body-font);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInRight 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    min-width: 300px;
}

.toast.success {
    background: #4CAF50;
    color: #ffffff;
    border: 1px solid #45a049;
}

.toast.error {
    background: #f44336;
    color: #ffffff;
    border: 1px solid #da190b;
}

.toast i {
    font-size: 1.2rem;
}

.toast span {
    font-weight: 500;
    letter-spacing: 0.5px;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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

/* Contact Page Styles */
.contact-page {
    padding: 120px 5% 60px;
    min-height: 100vh;
    background-color: var(--background-dark);
}

.contact-page h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding: 2rem;
    background: rgba(51, 51, 51, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

.social-links-container {
    margin-top: 3rem;
}

.social-links-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.contact-page .social-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-page .social-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all var(--transition-speed);
}

.contact-page .social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.contact-page .social-icon span {
    font-size: 1rem;
}

.contact-form-container {
    padding: 2rem;
    background: rgba(51, 51, 51, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

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

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-color);
    font-size: 1rem;
    border-radius: 4px;
    transition: all var(--transition-speed);
}

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

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all var(--transition-speed);
    border-radius: 4px;
}

.submit-btn:hover {
    background: var(--text-color);
    color: var(--background-dark);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-page h1 {
        font-size: 2.5rem;
    }

    .contact-info,
    .contact-form-container {
        padding: 1.5rem;
    }
}

/* Page Header Styles */
.page-header {
    padding: 120px 5% 40px;
    text-align: center;
    background-color: var(--background-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    position: relative;
}

.page-header h1 {
    font-family: var(--heading-font);
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--text-color);
    text-align: center;
    position: relative;
    z-index: 1;
}

.header-line {
    width: 0;
    height: 3px;
    background: var(--text-color);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    transition: width 1s ease;
    animation: lineExpand 1.5s ease forwards;
}

@keyframes lineExpand {
    0% {
        width: 0;
    }

    100% {
        width: 300px;
    }
}

.header-line::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.3;
    }

    50% {
        transform: scaleY(1.5);
        opacity: 0.6;
    }
}

/* Add a subtle gradient overlay */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 5% 30px;
        min-height: 30vh;
    }

    .page-header h1 {
        font-size: 2.8rem;
        letter-spacing: 3px;
    }

    @keyframes lineExpand {
        0% {
            width: 0;
        }

        100% {
            width: 140px;
        }
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
}

/* About Page Styles */
.about-section {
    padding: 60px 5% 80px;
    background-color: var(--background-dark);
    min-height: calc(100vh - 300px);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    background: rgba(51, 51, 51, 0.1);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: transform var(--transition-speed);
}

.about-grid:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.about-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.about-text h2 {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-color);
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.about-grid:hover .about-image img {
    transform: scale(1.05);
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    margin-top: 60px;
}

.stat-item {
    padding: 40px 30px;
    background: rgba(51, 51, 51, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all var(--transition-speed);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.stat-item p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.olympus-link {
    color: #4CAF50;
    text-decoration: none;
    transition: all var(--transition-speed);
    font-weight: 600;
}

.olympus-link:hover {
    color: #45a049;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 5% 30px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .about-section {
        padding: 40px 5% 60px;
    }

    .about-grid,
    .about-grid.reverse {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 30px;
    }

    .about-image {
        height: 300px;
    }

    .about-text h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .stats-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .stat-item p {
        font-size: 1.1rem;
    }
}

.counter {
    display: inline-block;
    font-family: var(--heading-font);
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 15px;
    transition: all 0.2s ease;
}

.counter.animated {
    animation: countUp 0.5s ease forwards;
}

@keyframes countUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .counter {
        font-size: 2.5rem;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1000;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 5px ;
    transition: transform 0.3s ease-in-out;
}

/* Mobile Navigation */
.mobile-nav-links {
    display: none;
}

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

    .hamburger {
        display: block;
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1000;
    }

    .hamburger-line {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--text-color);
        margin: 5px 0;
        transition: all 0.3s ease;
    }

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

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

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

    .mobile-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--background-dark);
        padding: 80px 20px;
        transition: right 0.3s ease;
        z-index: 999;
        display: flex;
        flex-direction: column;
        gap: 20px;
        overflow-y: auto;
    }

    .mobile-nav-links.active {
        right: 0;
    }

    .mobile-nav-links a {
        color: var(--text-color);
        text-decoration: none;
        font-family: var(--heading-font);
        font-size: 1.2rem;
        font-weight: 500;
        padding: 10px 0;
        display: block;
        transition: color 0.3s ease;
    }

    .mobile-nav-links a:hover {
        color: var(--accent-color);
    }

    .mobile-menu-item {
        position: relative;
    }

    .sub-menu {
        display: none;
        padding-left: 20px;
        margin-top: 10px;
        transition: all 0.3s ease;
    }

    .sub-menu.active {
        display: block;
    }

    .sub-menu a {
        font-size: 1rem;
        padding: 8px 0;
        opacity: 0.8;
    }

    .sub-menu a:hover {
        opacity: 1;
    }

    .cart-icon-container {
        margin-left: auto;
        margin-right: 60px;
    }
}

/* Brief About Section Styles */
.brief-about {
    padding: 100px 5%;
    background-color: var(--background-dark);
    text-align: center;
}

.brief-about-content {
    max-width: 800px;
    margin: 0 auto;
}

.brief-about h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brief-about p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-color);
    opacity: 0.9;
}

.brief-about .view-collection-btn {
    display: inline-block;
    padding: 1.2rem 4rem;
    font-size: 1.2rem;
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.brief-about .view-collection-btn:hover {
    background: var(--text-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .brief-about {
        padding: 60px 5%;
    }

    .brief-about h2 {
        font-size: 2rem;
    }

    .brief-about p {
        font-size: 1.1rem;
    }

    .brief-about .view-collection-btn {
        padding: 1rem 3rem;
        font-size: 1rem;
    }
}

.mobile-social-links {
    padding: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social-links .social-icon {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.mobile-social-links .social-icon i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.mobile-social-links .social-icon:hover {
    color: var(--accent-color);
}

/* Instagram icon specific color */
.mobile-social-links .fa-instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TikTok icon specific color */
.mobile-social-links .fa-tiktok:hover {
    color: #00f2ea;
}

/* Facebook icon specific color */
.mobile-social-links .fa-facebook:hover {
    color: #1877f2;
}

/* Vodafone Cash Payment Section Styles */
.vodafone-cash-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    border: 1px solid var(--border-color);
}

.vodafone-cash-section h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.vodafone-number-display {
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    text-align: center;
}

.vodafone-number-display p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.vodafone-number {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--text-color);
    letter-spacing: 2px;
}

.vodafone-form-group {
    margin-bottom: 1.5rem;
}

.vodafone-label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
}

.vodafone-input {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all var(--transition-speed);
}

.vodafone-input:focus {
    outline: none;
    border-color: var(--text-color);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* File Upload Styles */
.file-upload-container {
    margin-top: 1.5rem;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-speed);
    position: relative;
    /* Add this */
}

.file-upload-label:hover {
    border-color: var(--text-color);
    background: rgba(255, 255, 255, 0.05);
}

.file-upload-label i {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.upload-text {
    color: var(--text-color);
    font-size: 1.1rem;
    text-align: center;
}

/* Hide the default file input */
input[type="file"] {
    opacity: 0;
    width: 0.1px;
    height: 0.1px;
    position: absolute;
}

/* Style for showing selected file name */
.file-name {
    margin-top: 0.5rem;
    color: var(--accent-color);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .vodafone-cash-section {
        padding: 1.5rem;
    }

    .vodafone-number {
        font-size: 1.6rem;
    }

    .vodafone-label {
        font-size: 1rem;
    }

    .file-upload-label {
        padding: 1.5rem;
    }

    .file-upload-label i {
        font-size: 2rem;
    }

    .upload-text {
        font-size: 1rem;
    }
}

/* Order Summary Styles */
.order-summary {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.order-summary h2 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* Cart Items Container */
.cart-items {
    margin-bottom: 2rem;
}

/* Individual Cart Item */
.cart-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Cart Item Image */
.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cart Item Details */
.cart-item-details {
    flex-grow: 1;
}

.cart-item-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.cart-item-size {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Remove Item Button */
.remove-item {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.remove-item:hover {
    color: #ff4444;
}

/* Total Amount Section */
.total-amount {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.shipping,
.total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    font-size: 1.2rem;
    color: var(--text-color);
}

.total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 1.4rem;
    font-weight: 600;
}

/* Empty Cart Message */
.empty-cart-message {
    text-align: center;
    padding: 2rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .order-summary {
        padding: 1.5rem;
    }

    .cart-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
    }

    .cart-item-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .cart-item-details {
        text-align: center;
    }

    .remove-item {
        margin-top: 0.5rem;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
    .order-summary {
        margin: 0.5rem;
        padding: 0.8rem;
    }

    .cart-item-image {
        width: 100px;
        height: 100px;
    }

    .cart-item-details h4 {
        font-size: 1rem;
    }

    .cart-item-price {
        font-size: 1rem;
    }

    .shipping,
    .total {
        padding: 0.3rem 0;
    }
}

/* Order Summary Section */
.order-summary {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.order-summary h2 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* Cart Items */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Cart Item Image */
.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cart Item Details */
.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.cart-item-size {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Remove Button */
.remove-item {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.remove-item:hover {
    color: #ff4444;
}

/* Total Section */
.total-amount {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.shipping,
.total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    font-size: 1.2rem;
    color: var(--text-color);
}

.total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 1.4rem;
    font-weight: 600;
}

/* Empty Cart */
.empty-cart-message {
    text-align: center;
    padding: 2rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .order-summary {
        padding: 1.5rem;
    }

    .cart-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .cart-item-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .cart-item-details {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .order-summary {
        padding: 1rem;
        margin: 1rem;
    }

    .cart-item-image {
        width: 100px;
        height: 100px;
    }

    .cart-item-details h4 {
        font-size: 1rem;
    }

    .shipping,
    .total {
        font-size: 1rem;
    }
}

/* Brand Mark Logo Styles */
.brand-mark {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    z-index: 999;
    opacity: 0.8;
    transition: all var(--transition-speed);
}

.brand-mark:hover {
    opacity: 1;
    transform: scale(1.1);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Adjust for mobile */
@media (max-width: 768px) {
    .brand-mark {
        bottom: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
}

/* Footer Logo Styles */
.xkooza-logo {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all var(--transition-speed);
}

.xkooza-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
    transition: transform var(--transition-speed);
}

.xkooza-logo:hover img {
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .xkooza-logo {
        width: 150px;
        height: 150px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .xkooza-logo {
        width: 120px;
        height: 120px;
    }
}

/* Brand Mark and Social Menu Styles */
.brand-mark {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-mark.active {
    transform: rotate(45deg);
}

/* Social Menu */
.social-menu {
    position: fixed;
    bottom: 85px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.social-menu.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.social-menu a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    transform: scale(0);
}

.social-menu.active a {
    transform: scale(1);
}

/* Staggered animation for icons */
.social-menu.active a:nth-child(1) {
    transition-delay: 0.1s;
}

.social-menu.active a:nth-child(2) {
    transition-delay: 0.2s;
}

.social-menu.active a:nth-child(3) {
    transition-delay: 0.3s;
}

/* Hover effects for social icons */
.social-menu a:hover {
    transform: scale(1.2);
}

.social-menu a.instagram:hover {
    background: #E1306C;
}

.social-menu a.tiktok:hover {
    background: #000;
    border: 2px solid #00f2ea;
}

.social-menu a.facebook:hover {
    background: #1877f2;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .brand-mark {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .social-menu {
        bottom: 70px;
        right: 15px;
    }

    .social-menu a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* SEO-optimized headings */
.main-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 2px;
}

.section-title {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.collection-title {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }

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

    .collection-title {
        font-size: 1.5rem;
    }
}

/* 404 Error Page Styles */
.error-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    padding: 2rem;
}

.error-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.error-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.error-404 h1 {
    font-family: var(--heading-font);
    font-size: 6rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1;
}

.error-404 h2 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--text-color);
    margin: 1rem 0;
}

.error-404 p {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.error-actions a {
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.primary-btn {
    background: var(--text-color);
    color: var(--primary-color);
    border: none;
}

.secondary-btn {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.quick-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.quick-links h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.links-grid {
    font-family: var(--heading-font);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.links-grid a {
    font-family: var(--heading-font);
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem;
    transition: all var(--transition-speed);
}

.links-grid a:hover {
    color: var(--accent-color);
}

.error-404 .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.error-404 .social-icon {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all var(--transition-speed);
}

.error-404 .social-icon:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .error-404 h1 {
        font-size: 4rem;
    }

    .error-404 h2 {
        font-size: 1.5rem;
    }

    .error-actions {
        flex-direction: column;
    }

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

/* Image Optimization Styles */
.product-image {
    width: 100%;
    height: 300px;
    /* Fixed height for product images */
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    transition: transform var(--transition-speed);
}

.product-thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}

.collection-image {
    width: 100%;
    height: 400px;
    /* Fixed height for collection images */
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.brand-logo {
    width: 120px;
    height: 60px;
    object-fit: contain;
    /* Preserve logo aspect ratio */
}

.brand-mark img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Cart Item Images */
.cart-item-image {
    width: 100px;
    /* or your preferred width */
    height: 100px;
    /* or your preferred height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    /* optional for rounded corners */
    background: #222;
    /* optional for contrast */
}

.cart-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This makes the image fill the box and crop if needed */
    border-radius: 12px;
    /* match container if you want rounded corners */
}

/* Hero/Banner Images */
.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
}

/* About Page Images */
.about-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

/* Image Loading States */
.image-loading {
    background: linear-gradient(110deg, #1a1a1a 8%, #222 18%, #1a1a1a 33%);
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
}

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

/* Responsive Image Adjustments */
@media (max-width: 768px) {
    .product-image {
        height: 250px;
    }

    .collection-image {
        height: 300px;
    }

    .hero-image {
        height: 400px;
    }

    .about-image {
        height: 350px;
    }

    .cart-item-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .product-image {
        height: 200px;
    }

    .collection-image {
        height: 250px;
    }

    .hero-image {
        height: 300px;
    }

    .about-image {
        height: 250px;
    }
}

/* Image Hover Effects */
.product-image:hover {
    transform: scale(1.05);
}

/* Lazy Loading Support */
.lazy-image {
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.lazy-image.loaded {
    opacity: 1;
}

/* Image Error Fallback */
.image-error {
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 0.9rem;
    padding: 1rem;
    text-align: center;
}

/* Cart Sidebar Styles */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Cart Sidebar Header */
.cart-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
}

.cart-sidebar-header h3 {
    margin: 0;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.close-sidebar {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s ease;
}

.close-sidebar:hover {
    transform: rotate(90deg);
    opacity: 0.8;
}

/* Cart Items Container */
.cart-sidebar-items {
    padding: 20px;
    overflow-y: auto;
    max-height: calc(100vh - 200px);
}

/* Cart Item Styles */
.cart-sidebar .cart-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.cart-sidebar .cart-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(-5px);
}

.cart-sidebar .cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

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

.cart-sidebar .cart-item-name {
    margin: 0 0 5px 0;
    font-size: 0.9rem;
    color: #ffffff;
}

.cart-sidebar .cart-item-size {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 5px 0;
}

.cart-sidebar .cart-item-price {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
    margin: 5px 0;
}

/* Remove Item Button */
.cart-sidebar .remove-item {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 8px;
    font-size: 18px;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.cart-sidebar .remove-item:hover {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

/* Cart Sidebar Footer */
.cart-sidebar-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.checkout-button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.checkout-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Custom Scrollbar */
.cart-sidebar-items::-webkit-scrollbar {
    width: 5px;
}

.cart-sidebar-items::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.cart-sidebar-items::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
    }

    .cart-item {
        padding: 12px;
    }

    .cart-item img {
        width: 60px;
        height: 60px;
    }
}

/* Terms and Conditions Popup Styles */
.terms-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.terms-popup.show {
    opacity: 1;
    visibility: visible;
}

.terms-content {
    background-color: rgba(30, 30, 30, 0.95);
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.terms-popup.show .terms-content {
    transform: scale(1);
}

.terms-text {
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
}

.terms-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.terms-buttons button {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accept-btn {
    background-color: #ffffff;
    color: #000000;
}

.accept-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.decline-btn {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.decline-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .terms-content {
        padding: 1.5rem;
    }

    .terms-text {
        font-size: 1rem;
    }

    .terms-buttons button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

.terms-page {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.terms-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.terms-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.terms-section h2 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: right;
}

.terms-section h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: right;
}

.terms-section p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: right;
}

.terms-section a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .terms-page {
        padding: 2rem 1rem;
    }

    .terms-container {
        padding: 1.5rem;
    }

    .terms-section h2 {
        font-size: 1.75rem;
    }

    .terms-section h3 {
        font-size: 1.25rem;
    }

    .terms-section p {
        font-size: 1rem;
    }
}

.terms-link {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-link a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.terms-link a:hover {
    opacity: 1;
    text-decoration: underline;
}



.user-icon {
    position: relative;
    cursor: pointer;
    margin-left: 25px;
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.user-icon i {
    font-size: 20px;
    transition: all 0.3s ease;
}

.user-icon:hover i {
    opacity: 0.8;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

.user-icon:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: block;
    padding: 12px 15px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    border-radius: 4px;
    white-space: nowrap;
}

.user-dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.cart-icon-container {
    display: flex;
    align-items: center;
}

.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background-color: var(--background-dark);
}

.auth-container {
    width: 100%;
    max-width: 400px;
}

.auth-box {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-icon {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.auth-header h2 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--text-color);
    letter-spacing: 1px;
}

.auth-form {
    margin-bottom: 1.5rem;
}

.auth-form .form-group {
    margin-bottom: 1rem;
}

.auth-form input {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all var(--transition-speed);
}

.auth-form input:focus {
    outline: none;
    border-color: var(--text-color);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.auth-btn {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--text-color);
    border-radius: 4px;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-speed);
    margin-top: 1rem;
}

.auth-btn:hover {
    background: var(--text-color);
    color: var(--background-dark);
    transform: translateY(-2px);
}

.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: var(--border-color);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-divider span {
    background: var(--background-dark);
    padding: 0 1rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.social-auth {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-auth button {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: transparent;
    color: var(--text-color);
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.social-auth button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.google-auth {
    border-color: #DB4437 !important;
}

.facebook-auth {
    border-color: #4267B2 !important;
}

.auth-footer {
    text-align: center;
    color: var(--text-color);
    font-family: 'Orbitron';
    font-size: 0.9rem;
}

.auth-footer p {
    color: rgba(255, 255, 255, 0.336);
    font-family: var(--body-font);
    font-size: 1rem;
}

.auth-footer a {
    color: rgba(78, 78, 78, 0.555);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Orbitron';
    transition: all var(--transition-speed);
}

.auth-footer a:hover {
    color: rgb(255, 255, 255);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .auth-box {
        padding: 1.5rem;
    }

    .auth-icon {
        font-size: 2.5rem;
    }

    .auth-header h2 {
        font-size: 1.8rem;
    }
}

/* Profile Page Styles */
.profile-section {
    min-height: 100vh;
    padding: 100px 20px;
    background-color: var(--background-dark);
}

.profile-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.profile-avatar {
    font-size: 4rem;
    color: var(--text-color);
}

.profile-info h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.profile-info p {
    color: var(--text-color);
    opacity: 0.8;
}

.profile-actions {
    margin-left: auto;
    display: flex;
    gap: 1rem;
}

.profile-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-speed);
}

.profile-btn:hover {
    background: var(--text-color);
    color: var(--background-dark);
}

.orders-section {
    margin-top: 2rem;
}

.orders-section h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all var(--transition-speed);
}

.order-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.order-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.order-id {
    font-weight: 600;
    color: var(--text-color);
}

.order-date {
    color: var(--text-color);
    opacity: 0.8;
}

.order-items {
    margin-bottom: 1rem;
}

.order-item-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-info h4 {
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.order-item-info p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
}

.order-total {
    text-align: right;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.no-orders {
    text-align: center;
    color: var(--text-color);
    opacity: 0.8;
    padding: 2rem;
}

/* Password Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--background-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    margin: auto;
    position: relative;
    transform: translateY(-20px);
    transition: transform var(--transition-speed);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    color: var(--text-color);
    font-size: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all var(--transition-speed);
}

.close-modal:hover {
    transform: rotate(90deg);
    opacity: 0.8;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .profile-actions {
        margin: 1rem auto 0;
    }

    .profile-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .order-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .order-item-details {
        flex-direction: column;
        text-align: center;
    }

    .order-total {
        text-align: center;
    }
}

.user-icon-link {
    color: inherit;
    text-decoration: none;
}

.user-icon-link i {
    color: white;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-shine {
    width: 120px;
    animation: shine 2s infinite;
    mask-image: linear-gradient(-75deg,
            rgba(0, 0, 0, 0.6) 30%,
            rgba(0, 0, 0, 1) 50%,
            rgba(0, 0, 0, 0.6) 70%);
    mask-size: 200%;
    -webkit-mask-image: linear-gradient(-75deg,
            rgba(0, 0, 0, 0.6) 30%,
            rgba(0, 0, 0, 1) 50%,
            rgba(0, 0, 0, 0.6) 70%);
    -webkit-mask-size: 200%;
}

@keyframes shine {
    0% {
        mask-position: 150%;
        -webkit-mask-position: 150%;
    }

    100% {
        mask-position: -50%;
        -webkit-mask-position: -50%;
    }
}

.preloader-text {
    margin-top: 20px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    opacity: 0.8;
}

.quantity-selector {
    margin: 15px 0;
    text-align: center;
}

.quantity-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.quantity-controls button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-color);
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-controls button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.quantity-input {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-color);
    transition: all var(--transition-speed);
    line-height: 40px;
    padding: 0;
    margin: 0;
    appearance: textfield;
}

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


.paynw-btn {
    width: 100%;
    padding: 12px 20px;
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    font-weight: 700;
}

.paynw-btn:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

.paynw-btn {
    padding: 0.8rem;
    font-size: 0.9rem;
}

#payment-form {
    display: none;
}

.empty-cart-container {
    text-align: center;
    padding: 2rem;
    color: var(--text-color);
}

.empty-cart-message {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: #b0b0b0;
    margin-bottom: 2.2rem;
    letter-spacing: 1.2px;
    text-shadow: 0 2px 12px rgba(255, 249, 249, 0.397);
    line-height: 1.3;
    transition: color 0.2s;
}

.continue-shopping-btn {
    display: inline-block;
    padding: 20px 44px;
    background-color: var(--text-color);
    color: var(--background-dark);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    transition: all var(--transition-speed);
    margin-top: 10px;
}

.continue-shopping-btn:hover {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
    transform: translateY(-2px);
}

/* Thank You Page Styles */
.thank-you-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: #000000;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

.thank-you-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    color: #000000;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease-out;
}

.thank-you-content h1 {
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

.thank-you-content p {
    color: #333333;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.order-details {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
    border: 2px solid #000000;
}

.order-details h2 {
    color: #000000;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

.order-info {
    margin-bottom: 2rem;
}

.order-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: #333333;
}

.order-items {
    margin-top: 2rem;
}

.order-items h3 {
    color: #000000;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

.order-items ul {
    list-style: none;
    padding: 10px;
    background-color: #ffffff; /* Set background to white */
    border-radius: 8px;
}

.order-items li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2); /* Adjusted border color for white background */
    background: none;
    color: #000000; /* Ensure text color is black */
}

.order-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 1rem;
    border: 1px solid #000000;
}

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

.order-item-details p {
    margin: 0.3rem 0;
    font-size: 1rem;
    color: #000000; /* Ensure text color is black */
}

.next-steps {
    margin: 2rem 0;
    text-align: left;
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #000000;
}

.next-steps h2 {
    color: #000000;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #333333;
}

.next-steps li i {
    color: #000000;
    margin-right: 1rem;
    font-size: 1.3rem;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.action-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

.primary-btn {
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
}

.primary-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.secondary-btn {
    background: #ffffff;
    color: #000000;
    border: 2px solid #000000;
}

.secondary-btn:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

.order-id {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: #333333;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .thank-you-content {
        padding: 2rem;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    .order-items li {
        flex-direction: column;
        text-align: center;
    }

    .order-item-image {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}


/* Simplified Order History Styles */
.orders-section {
    margin-top: 2rem;
}

.orders-section h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.order-header:hover {
    background: rgba(255, 255, 255, 0.1);
}

.order-id {
    font-weight: 600;
    color: var(--text-color);
}

.order-date {
    color: var(--text-color);
    opacity: 0.8;
}

.order-status {
    color: #4CAF50;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    background: rgba(76, 175, 80, 0.1);
}

.toggle-icon {
    color: var(--text-color);
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.order-details {
    border-top: 1px solid var(--border-color);
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.2);
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.order-item-row:last-child {
    border-bottom: none;
}

.order-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.order-total {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .order-header {
        flex-wrap: wrap;
    }

    .order-id {
        width: 50%;
        margin-bottom: 0.5rem;
    }

    .order-date {
        width: 50%;
        text-align: right;
        margin-bottom: 0.5rem;
    }

    .order-status {
        width: 50%;
    }

    .toggle-icon {
        width: 50%;
        text-align: right;
    }
}

.product-image {
    position: relative;
}


.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.product-image {
    position: relative;
    overflow: hidden;
}

.image-slider {
    width: 100%;
    height: 300px;
    /* أو أي ارتفاع يناسب تصميمك */
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.image-slider img {
    display: none;
    width: 100%;
    height: 100%;
}

.image-slider img.active {
    display: block;
}

.color-selector {
    display: flex;
    justify-content: center;
    margin: 15px 0;
    gap: 10px;
}

.color-square {
    margin-top: 20px;
    padding: 10px 16px;
    border: 1px solid #ccc;
    background-color: transparent;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s ease;
    border-radius: 4px;
    letter-spacing: 1px;
}

.color-square:hover,
.color-square.active {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.quick-view-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.quick-view-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.quick-view-details {
    font-family: var(--body-font);
    text-align: center;
    margin-top: 20px;
}

.size-chart-btn,
.quick-view-btn {
    padding: 10px 16px;
    border: 1px solid #ccc;
    background-color: transparent;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s ease;
    border-radius: 4px;
    letter-spacing: 1px;
}

.quick-view-btn:hover,
.quick-view-btn.active {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.size-chart-btn:hover,
.size-chart-btn.active {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

body {
    font-family: 'Orbitron', sans-serif;
    
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
}

.quick-view-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #000000;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    display: flex;
}

/* Back Button */
.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.back-button:hover {
    color: #000000;
}

.quick-view-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#quickViewImage {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.qvbtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 123, 255, 0.8);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 24px;
}

#prevImageButton {
    left: 10px;
}

#nextImageButton {
    right: 10px;
}

.qvbtn:hover {
    background-color: rgb(117, 117, 117);
}

.quick-view-details {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#quickViewTitle {
    font-size: 24px;
    margin: 10px 0;
    color: #ffffff;
}

#quickViewDescription {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
}

#quickViewPrice {
    font-size: 20px;
    color: #ffffff88;
    font-weight: bold;
}

.separator {
    height: 1px;
    background-color: #000000;
    margin: 20px 0;
}

/* Responsive Styles */
@media (max-width: 600px) {
    .quick-view-container {
        flex-direction: column;
    }

    .quick-view-image,
    .quick-view-details {
        width: 100%;
    }

    .back-button {
        font-size: 20px;
    }

    #quickViewTitle {
        font-size: 20px;
    }

    #quickViewDescription {
        font-size: 14px;
    }

    #quickViewPrice {
        font-size: 18px;
    }

    .qvbtn {
        padding: 8px;
    }
}

.color-selector h4,
.size-selector h4,
.quantity-selector h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #313131;
    margin-bottom: 10px;
    text-align: left;
}

.size-chart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.size-chart-modal .modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.size-chart-modal .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.size-chart-btn {
    padding: 10px 16px;
    border: 1px solid #ccc;
    background-color: transparent;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s ease;
    border-radius: 4px;
    letter-spacing: 1px;
}

.open-view {
    display: flex;
    justify-content: center;
    margin: 15px 0;
    gap: 10px;

}

.order-summary-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: rgba(0, 0, 0, 0.9);
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    color: #fff;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.order-info {
    margin-bottom: 20px;
}

.order-info p {
    margin: 10px 0;
    font-size: 16px;
}

.order-items {
    margin-top: 20px;
}

.order-items h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #fff;
}

.order-items ul {
    list-style: none;
    padding: 0;
    background-color: #ffffff; 
    padding: 10px; 
    border-radius: 8px; 
}

.order-items li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2); 
    background: none;
    color: #000000; 
}

.order-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 1rem;
    border-radius: 5px;
}

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

.order-item-details p {
    margin: 5px 0;
    color: #000000; 
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        padding: 15px;
        margin: 10px;
    }

    .order-item-image {
        width: 60px;
        height: 60px;
    }

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

    .order-items h3 {
        font-size: 18px;
    }

    .order-item-details p {
        font-size: 14px;
    }
}

/* Custom Scrollbar for the popup */
.popup-content::-webkit-scrollbar {
    width: 8px;
}

.popup-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.popup-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.popup-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}



@media (max-width: 768px) {

    .orders-section h3 {
        font-size: 1.3rem; 
        margin-bottom: 0.8rem; 
    }

    .orders-list {
        gap: 0.5rem; 
        width: 98%; 
        max-width: 600px; 
        margin: 0 auto; 
    }

    .order-item {
        padding: 0.5rem; 
        width: 100%; 
    }

    .order-header {
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center; 
        gap: 0.3rem; 
        padding: 0.4rem; 
        margin-bottom: 0.5rem; 
        flex-wrap: wrap;
    }

    .order-id {
        font-size: 0.9rem; 
        margin-bottom: 0; 
        flex-basis: auto; 
    }

    .order-date {
        display: block;
        font-size: 0.7rem;
        margin-bottom: 0; 
        flex-basis: auto; 
        margin-right: 0.5rem;
    }

    .order-status {
        font-size: 0.8rem; 
        padding: 0.2rem 0.5rem; 
        margin-bottom: 0; 
        flex-basis: auto; 
    }

    .order-eye {
         font-size: 0.9rem; 
         margin-bottom: 0; 
         flex-basis: auto; 
    }

}

/* Receipt Page Styles */
.receipt-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    background-color: #fff;
    color: #000;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.receipt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.receipt-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 30px;
    font-weight: 700;
}

.receipt-meta p {
    margin: 5px 0;
    text-align: right;
    font-size: 14px;
}

.receipt-section {
    margin-bottom: 30px;
}

.receipt-section h3 {
    font-size: 16px;
    margin-bottom: 10px;
    text-decoration: underline;
}

.receipt-section p {
    color: #000;
    margin: 5px 0;
    font-size: 14px;
}

.items-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.items-table th,
.items-table td {
    padding: 12px 0;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.items-table th {
    font-size: 14px;
    font-style: italic;
    border-bottom: 2px solid #000;
}

.items-table td {
     font-size: 14px;
}

.items-table th:nth-child(2),
.items-table td:nth-child(2) {
    text-align: center;
}

.items-table th:nth-child(3),
.items-table td:nth-child(3),
.items-table th:nth-child(4),
.items-table td:nth-child(4) {
    text-align: right;
}

.totals p {
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
    font-size: 14px;
}

.totals p span {
    font-weight: 600;
}

.totals .total {
    font-size: 16px;
    font-weight: 700;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.receipt-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.payment-method, .contact-info {
    flex-basis: 48%;
}

.payment-method h3,
.contact-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
    text-decoration: underline;
    font-style: italic;
}

.contact-info p {
    margin: 5px 0;
    font-size: 14px;
}

.contact-info p:first-of-type {
    margin-top: 10px;
}

.contact-info a {
    color: #000;
    text-decoration: none;
}

@media (max-width: 600px) {
    .receipt-container {
        padding: 20px;
        margin: 20px auto;
    }

    .receipt-header {
        flex-direction: column;
        text-align: center;
    }

    .receipt-meta p {
        text-align: center;
    }

    .receipt-footer {
        flex-direction: column;
    }

    .payment-method, .contact-info {
        flex-basis: 100%;
        margin-bottom: 20px;
    }
}

@media print {
    body * {
        visibility: hidden;
    }
    .receipt-container, .receipt-container * {
        visibility: visible;
    }
    .receipt-container {
        position: absolute;
        left: 50%; 
        transform: translateX(-50%); 
        top: 0;
        margin: 0; 
        padding: 20px; 
        box-shadow: none;
        width: 100%; 
        max-width: 800px;
    }
    .items-table table {
        width: 100%;
    }
    .items-table th, .items-table td {
        padding: 8px 0;
    }
    .receipt-footer {
        flex-direction: row;
        justify-content: space-between;
    }
    .payment-method, .contact-info {
        flex-basis: 48%;
    }
}

.forgot-password-btn {
    font-family: 'Orbitron';
    transition: all var(--transition-speed);
    color: rgba(78, 78, 78, 0.555);
    text-decoration: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 0.9em; 
    cursor: pointer;
    padding: 0;
    margin-top: 5px;
    text-align: right;
    width: 100%;
    display: block;
}

.forgot-password-btn:hover {
    color: var(--accent-color); 
    text-decoration: underline; 
}

* {
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
}

button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
}

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none !important;
    box-shadow: none !important;
}


button:active,
a:active {
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
}


a {
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
}

input {
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
}

select {
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
}

textarea {
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
}

.team-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-image-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.team-image-slider img.active {
    opacity: 1;
}
.about-text p {
    font-size: .9rem;     
    line-height: 1.4;     
}
.about-text {
    max-width: 500px;     
}
.coupon-section .form-input {
    border: none;
    border-bottom: 2px solid #888;
    background: transparent;
    outline: none;
    width: 60%;
    font-size: 1.1rem;
    padding: 0.7rem 0;
    transition: border-color 0.2s;
}
  
.coupon-section .form-input:focus {
    border-bottom: 2.5px solid #222;
    background: transparent;
}

.checkout-section .coupon-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
  }
  .checkout-section .coupon-section .form-input {
    border: none;
    border-bottom: 1.5px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    padding: 0.5rem 0.2rem;
    width: 220px;
    min-width: 0;
    outline: none;
    transition: border-color 0.2s;
  }
  .checkout-section .coupon-section .form-input:focus {
    border-bottom: 2px solid #272727;
    color: #fff;
  }
  .checkout-section .coupon-section .checkout-btn {
    padding: 0.4rem 1.1rem;
    font-size: 0.95rem;
    border-radius: 4px;
    height: 2.2rem;
    min-width: unset;
    background: #fff;
    color: #111;
    font-weight: 600;
    border: none;
    box-shadow: none;
    margin: 0;
    transition: background 0.2s, color 0.2s;
  }
  .checkout-section .coupon-section .checkout-btn:hover {
    background: #343535;
    color: #111;
  }
  
  .checkout-section input[type="text"],
  .checkout-section input[type="email"],
  .checkout-section input[type="tel"],
  .checkout-section input[type="number"],
  .checkout-section input[type="password"] {
    border: none;
    border-bottom: 1.5px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    padding: 0.5rem 0.2rem;
    outline: none;
    transition: border-color 0.2s;
  }
  .checkout-section input[type="text"]:focus,
  .checkout-section input[type="email"]:focus,
  .checkout-section input[type="tel"]:focus,
  .checkout-section input[type="number"]:focus,
  .checkout-section input[type="password"]:focus {
    border-bottom: 2px solid #252525;
    color: #fff;
  }
  
  .checkout-section input[type="text"]::placeholder,
  .checkout-section input[type="email"]::placeholder,
  .checkout-section input[type="tel"]::placeholder {
    color: #bbb;
    opacity: 1;
  }
  
  .custom-soldout-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    color: #111;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    z-index: 2;
    letter-spacing: 1px;
    border: 1px solid #eee;
}
.product-card {
    position: relative; 
}

.coming-soon-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    font-family: 'Orbitron', 'Inter', Arial, sans-serif;
    color: #ffffffa4;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    animation: fadeIn 1.2s;
    margin-top: 2rem;
}
.soon-emoji {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: pulse 1.2s infinite;
    display: inline-block;
}
.soon-text {
    display: block;
    text-align: center;
}
.sooo {
    color: #2b2b2b;
    text-shadow: 0 2px 8px #222, 0 0 2px #2b2b2b;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 3px;
}
@keyframes pulse {
    0% { transform: scale(1);}
    50% { transform: scale(1.18);}
    100% { transform: scale(1);}
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}


.spinner-minimal {
    display: block;
    margin: 60px auto 40px auto;
    width: 32px;
    height: 32px;
    border: 2.5px solid #bbb;      
    border-top: 2.5px solid #fff;  
    border-radius: 50%;
    animation: spinner-minimal-spin 0.7s linear infinite;
    background: transparent;
  }
  @keyframes spinner-minimal-spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
  }

::-webkit-scrollbar {
    width: 2px;                   
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.171); 
    border-radius: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-button {
    display: none; 
}
.product-info-badge {
    position: static !important;
    margin-left: 0;
    margin-bottom: 8px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    cursor: pointer;
    z-index: 10;
    opacity: 0.98;
    transition: background 0.2s, color 0.2s;
  }
  .product-info-badge:hover {
    background: #fff;
    color: #222;
  }
