/* Loading state */
html.loading {
    visibility: hidden;
}

html.loaded {
    visibility: visible;
}

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

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #000;
    line-height: 1.6;
}

/* Headings with more elegant styling */
h1, h2, h3, h4, h5, h6, p {
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    letter-spacing: 0.75px;
}

/* Header Styles */
.site-header {
    position: sticky;
    padding: 15px 0;
    width: 100%;
    top: 0;
    background: white;
    z-index: 1000;
    border-bottom: 1px solid #f2f2f2;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-toggle {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    transition: opacity 0.3s;
    order: 1;
}

.menu-toggle:hover {
    opacity: 0.7;
}

.hamburger-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.logo {
    order: 2;
    position: relative;
    left: auto;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.logo-image {
    height: 25px;
    width: auto;
    transition: height 0.3s ease;
}

.header-right {
    order: 3;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: #000;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.nav-list a:hover {
    opacity: 0.7;
}

.cart-icon {
    display: flex;
    align-items: center;
    position: relative;
}

.cart-icon a {
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cart-count {
    display: none;
    background: #000;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 12px;
    align-items: center;
    justify-content: center;
}

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

.cart-icon-text {
    display: none;
}

/* Desktop Styles */
@media (min-width: 500px) {
    .site-header {
        padding: 20px 0;
    }

    .header-container {
        padding: 0 30px;
    }

    .menu-toggle {
        display: none;
    }

    .logo {
        order: 1;
        flex-grow: 0;
        margin-right: 50px;
    }

    .logo-image {
        height: 35px;
    }

    .header-right {
        order: 2;
        flex-grow: 1;
        justify-content: flex-end;
    }

    .main-nav {
        margin-right: 30px;
    }

    .nav-list {
        display: flex;
        gap: 30px;
    }
}

/* Large Desktop Styles */
@media (min-width: 10000px) {
    .logo-image {
        height: 40px;
    }

    .header-container {
        padding: 0 40px;
    }
}

/* Menu Styles */
.main-nav {
    position: fixed;
    top: 81px; /* header height + padding */
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    border-bottom: 1px solid #f2f2f2;
}

.main-nav.active {
    transform: translateX(0);
}

.nav-list {
    flex-direction: column;
    gap: 20px;
}

.nav-list a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
}

@media (min-width: 10000px) {
    .main-nav {
        position: static;
        transform: none;
        padding: 0;
        border: none;
    }

    .nav-list {
        flex-direction: row;
        gap: 30px;
    }

    .nav-list a {
        padding: 0;
        font-size: 12px;
    }
}

/* Header Styles */
.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu-text {
    position: relative;
}

.menu-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu-toggle:hover .menu-text::after {
    transform: scaleX(1);
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: #000;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.nav-list a:hover {
    opacity: 0.7;
}

.cart-icon {
    display: flex;
    align-items: center;
}

.cart-icon a {
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cart-count {
    display: none;
    background: #000;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 12px;
    align-items: center;
    justify-content: center;
}

.mobile-cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
}

.mobile-cart .cart-count {
    margin-left: auto;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 2000;
    padding: 15px 20px;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
}

.menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
}

.close-menu {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
}

.close-text {
    position: relative;
}

.close-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.close-menu:hover .close-text::after {
    transform: scaleX(1);
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.menu-links a {
    text-decoration: none;
    color: #000;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.menu-links a:hover {
    opacity: 0.7;
}

@media (min-width: 10000px) {
    .header-container {
        padding: 15px 40px;
        position: relative;
    }

    .menu-toggle {
        display: none;
    }

    .main-nav {
        display: block;
        position: absolute;
        right: 40px;
    }

    .nav-list {
        gap: 40px;
    }

    .nav-list a {
        font-size: 12px;
    }

    .logo {
        position: absolute;
        left: 40px;
    }

    .cart-icon {
        display: none;
    }
}

@media (min-width: 10000px) {
    .slide-content {
        padding: 60px 40px;
    }

    .slide-text h1 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .slide-text p {
        font-size: 12px;
    }

    .slide-link {
        font-size: 12px;
    }
}

/* Product Section */
.product-section {
    padding: 0px 20px;
    margin-top: 60px;
}

.product-intro {
    text-align: left;
    padding: 0 20px 30px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    background: #fff;
}

.product-card {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    background: white;
}

.product-image-container {
    position: relative;
    padding-bottom: 150%;
    overflow: hidden;
    background: #f8f8f8;
}

.product-image,
.product-image-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.product-image-hover {
    opacity: 0;
}

.product-info {
    position: relative;
    padding: 12px 20px;
    text-align: left;
}

.product-name {
    font-size: 12px;
    letter-spacing: 0.6px;
    font-weight: 100;
    margin-bottom: 4px;
    text-transform: none;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    margin-bottom: 15px;
}

.price {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.4em;
    font-weight: lighter;
    color: #333;
    margin: 10px 0;
}

.price-original {
    text-decoration: line-through;
    color: #666;
}

.price-discounted {
    color: #000;
}

.view-button {
    display: inline-block;
    border: 1px solid #000;
    padding: 8px 25px;
    font-size: 12px;
    text-decoration: none;
    color: #000;
    background: none;
    margin-bottom: 20px;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

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

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #000;
    background: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #000;
    color: #fff;
}

#quantity {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid #000;
    font-size: 14px;
}

.add-to-cart-button {
    width: 100%;
    padding: 15px 30px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.add-to-cart-button:hover {
    opacity: 0.8;
}

.add-to-cart-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.product-title {
    font-weight: 700;
    font-size: 2em;
    margin-bottom: 20px;
}

/* Mobile Touch Interactions */
@media (hover: none) {
    .product-image-hover {
        display: none;
    }
    
    .view-button:active {
        background: #000;
        color: #fff;
    }
}

/* Desktop Hover Effects */
@media (hover: hover) {
    .product-card:hover .product-image {
        opacity: 0;
    }
    
    .product-card:hover .product-image-hover {
        opacity: 1;
    }
    
    .view-button:hover {
        background: #000;
        color: #fff;
    }
}

/* Product Gallery */
.product-gallery {
    background: white;
    margin-bottom: 20px;
}

.gallery-main {
    position: relative;
    width: 100%;
    background: white;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.gallery-nav:hover {
    background: white;
}

.gallery-nav.prev {
    left: 10px;
}

.gallery-nav.next {
    right: 10px;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px;
    scrollbar-width: none;  /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

.gallery-thumbs::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, Opera */
}

.thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
    flex-shrink: 0;
}

.thumb:hover,
.thumb.active {
    opacity: 1;
}

/* Product Detail */
.product-detail {
    margin-top: 0;
}

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

.product-title {
    font-size: 18px;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-price {
    font-size: 16px;
    margin-bottom: 20px;
}

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

.product-description ul {
    margin: 20px 0;
    padding-left: 20px;
    list-style-type: none;
}

.product-description li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.product-description li:before {
    content: "•";
    position: absolute;
    left: 0;
}

.add-to-cart {
    width: 100%;
    padding: 15px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background: #333;
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 120px 30px 80px;
    background: white;
    text-align: center;
    border-bottom: 1px solid #f2f2f2;
}

.feature-item {
    padding: 0 20px;
}

.feature-item h2 {
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 80px 30px 60px;
    background: white;
    text-align: center;
    border-bottom: 1px solid #f2f2f2;
}

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

.stat-number {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 1px;
    color: #666;
}

/* Benefits Section */
.benefits-intro {
    text-align: center;
    padding: 60px 35px;
    background: white;
    border-bottom: 1px solid #f2f2f2;
}

.benefits-intro h2 {
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.benefits-intro p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: #f2f2f2;
}

.benefit-item {
    background: white;
    padding: 60px 35px;
    text-align: center;
}

.benefit-item h3 {
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.benefit-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    color: #666;
}

.benefit-list li {
    margin-bottom: 8px;
}

/* Promise Section */
.promise-section {
    padding: 100px 35px;
    background: white;
    border-top: 1px solid #f2f2f2;
}

.promise-intro {
    text-align: center;
    margin-bottom: 60px;
}

.promise-intro h2 {
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.promise-intro p {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.promise-desc {
    display: block;
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.promise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.promise-item {
    text-align: center;
    padding: 0 20px;
}

.promise-item h3 {
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.promise-item p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 120px 35px;
    background: white;
    border-top: 1px solid #f2f2f2;
}

.cta-section h2 {
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 12px;
    letter-spacing: 1px;
    background: black;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    opacity: 0.8;
}

/* Footer Styles */
.site-footer {
    padding: 40px 20px 20px;
    background: white;
    margin-top: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.footer-section a {
    text-decoration: none;
    color: #000;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.footer-section.legal {
    border-top: 1px solid #f2f2f2;
    padding-top: 20px;
    margin-top: 20px;
}

.footer-section.legal a {
    color: #666;
}

.footer-bottom {
    border-top: 1px solid #f2f2f2;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
}

.location {
    font-size: 12px;
    color: #666;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    text-decoration: none;
    color: #000;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* Desktop Styles */
@media (min-width: 500px) {
    .slide-title {
        font-size: 32px;
    }

    .slide-subtitle {
        font-size: 16px;
    }

    .slide-cta {
        font-size: 12px;
        padding: 15px 40px;
    }

    .product-section {
        padding: 0px 40px;
    }

    .product-intro h2 {
        font-size: 16px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 40px;
    }

    .product-info {
        padding: 30px;
    }

    .product-name {
        font-size: 14px;
    }

    .product-price {
        font-size: 12px;
    }

    .product-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-detail {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 40px;
        margin: 0 auto;
        max-width: 1400px;
        padding: 0 40px;
    }

    .product-info-detail {
        position: sticky;
        top: 100px;
        align-self: start;
        padding: 0;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-section {
        text-align: left;
    }

    .footer-section.legal {
        grid-column: span 2;
        text-align: center;
    }

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

    .location {
        flex-direction: row;
        justify-content: flex-end;
        text-align: right;
    }

    .features-section {
        padding: 100px 40px;
    }

    .stats-section {
        padding: 100px 40px;
    }

    .benefits-intro {
        padding: 120px 40px 80px;
    }

    .promise-section {
        padding: 60px 40px;
    }

    .cta-section {
        padding: 60px 40px;
    }
}

/* Product Specifications */
.product-specs {
    margin: 40px 0;
    padding: 0 20px;
}

.specs-section {
    margin-bottom: 30px;
}

.specs-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.specs-box {
    padding: 20px;
    background: #f9f9f9;
}

.specs-box h4 {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
}

.specs-list {
    list-style: none;
    font-size: 12px;
    line-height: 1.6;
}

/* Custom Order Section */
.custom-order {
    margin: 40px 0;
    padding: 0 20px;
}

.order-options {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.order-option {
    flex: 1;
    padding: 20px;
    background: #f9f9f9;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
}

.order-option.active {
    background: #000;
    color: #fff;
}

.order-form {
    display: none;
}

.order-form.active {
    display: block;
}

.preset-form select,
.free-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 12px;
}

/* Reviews Section */
.reviews-section {
    margin: 40px 0;
    padding: 0 20px;
}

.review-card {
    padding: 20px;
    background: #f9f9f9;
    margin-bottom: 20px;
}

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

.reviewer-name {
    font-size: 12px;
    font-weight: 500;
}

.review-date {
    font-size: 12px;
    color: #666;
}

.review-rating {
    margin-bottom: 10px;
}

.review-text {
    font-size: 12px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-specs,
    .custom-order,
    .reviews-section {
        padding: 0 40px;
        max-width: 1200px;
        margin: 60px auto;
    }

    .review-card {
        padding: 30px;
    }
}

/* Review Form Styles */
.write-review {
    margin-top: 40px;
    padding: 20px;
    background: #f9f9f9;
}

.write-review h4 {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    font-size: 24px;
    color: #ddd;
    transition: color 0.2s;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #ffd700;
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 14px;
}

.review-form textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-review {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.submit-review:hover {
    opacity: 0.8;
}

/* Review Popup Styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup.show {
    display: flex;
}

.popup-content {
    background: #fff;
    padding: 30px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.popup-content h3 {
    margin-bottom: 15px;
    font-weight: 300;
}

.close-popup {
    margin-top: 20px;
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.close-popup:hover {
    opacity: 0.8;
}

/* Footer Links */
.footer-top {
    padding: 40px 20px;
    border-top: 1px solid #f2f2f2;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.footer-bottom {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #f2f2f2;
}

.footer-bottom span {
    font-size: 12px;
    color: #666;
    margin: 0 5px;
}

@media (min-width: 768px) {
    .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }

    .newsletter-section {
        padding: 80px 40px;
    }
}

/* Contact Page Styles */
.contact-page {
    max-width: 500px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-form-container h1 {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-align: center;
}

.contact-form {
    width: 100%;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    font-size: 14px;
    font-family: inherit;
    outline: none;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #000;
    transition: all 0.3s;
    pointer-events: none;
}

.form-group textarea + label {
    top: 20px;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group label.active {
    top: -10px;
    font-size: 12px;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.submit-button:hover {
    opacity: 0.8;
}

@media (min-width: 768px) {
    .contact-page {
        padding: 80px 40px;
    }

    .contact-form-container h1 {
        font-size: 32px;
    }
}

/* Returns Page Styles */
.returns-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.returns-header {
    text-align: center;
    margin-bottom: 60px;
}

.returns-header h1 {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
}

.returns-content {
    display: grid;
    gap: 40px;
}

.returns-section {
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 40px;
}

.returns-section:last-child {
    border-bottom: none;
}

.returns-section h2 {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.returns-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.returns-steps,
.returns-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.returns-steps li,
.returns-list li {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    padding: 10px 0;
    border-bottom: 1px solid #f2f2f2;
}

.returns-steps li:last-child,
.returns-list li:last-child {
    border-bottom: none;
}

.returns-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 30px;
}

.returns-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #000;
}

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

.contact-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.contact-button:hover {
    opacity: 0.8;
}

@media (min-width: 768px) {
    .returns-page {
        padding: 80px 40px;
    }

    .returns-header h1 {
        font-size: 32px;
    }

    .returns-content {
        gap: 60px;
    }
}

/* Privacy Policy Page Styles */
.privacy-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
}

.privacy-header h1 {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.last-updated {
    font-size: 12px;
    color: #666;
}

.privacy-content {
    display: grid;
    gap: 40px;
}

.privacy-section {
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 40px;
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.privacy-text {
    color: #666;
}

.privacy-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.privacy-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-text li {
    font-size: 14px;
    line-height: 1.6;
    padding: 10px 0;
    border-bottom: 1px solid #f2f2f2;
}

.privacy-text li:last-child {
    border-bottom: none;
}

.contact-info {
    margin-top: 20px;
    text-align: center;
}

.contact-info p {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .privacy-page {
        padding: 80px 40px;
    }

    .privacy-header h1 {
        font-size: 32px;
    }

    .privacy-content {
        gap: 60px;
    }
}

/* Terms of Use Page Styles */
.terms-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.terms-header {
    text-align: center;
    margin-bottom: 60px;
}

.terms-header h1 {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.terms-content {
    display: grid;
    gap: 40px;
}

.terms-section {
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 40px;
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-section h2 {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 30px 0 20px;
}

.terms-section h3 {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.terms-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.terms-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-section li {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    padding: 10px 0;
    border-bottom: 1px solid #f2f2f2;
}

.terms-section li:last-child {
    border-bottom: none;
}

@media (min-width: 768px) {
    .terms-page {
        padding: 80px 40px;
    }

    .terms-header h1 {
        font-size: 32px;
    }

    .terms-content {
        gap: 60px;
    }
}

/* Cart Page Styles */
.cart-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.cart-header {
    text-align: center;
    margin-bottom: 40px;
}

.cart-header h1 {
    font-size: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    padding: 20px;
    border: 1px solid #eee;
}

.item-image {
    width: 100px;
    height: 100px;
}

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

.item-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item-details h3 {
    font-size: 16px;
    margin: 0;
}

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

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

.quantity-controls button {
    width: 24px;
    height: 24px;
    border: 1px solid #ddd;
    background: none;
    cursor: pointer;
}

.remove-item {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 0 10px;
}

.cart-summary {
    padding: 20px;
    border: 1px solid #eee;
    height: fit-content;
}

.summary-header {
    margin-bottom: 20px;
}

.summary-header h2 {
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.summary-row.total {
    font-weight: bold;
    font-size: 16px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.checkout-button,
.continue-shopping {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.checkout-button {
    background: #000;
    color: #fff;
}

.continue-shopping {
    background: none;
    border: 1px solid #000;
}

.empty-cart {
    text-align: center;
    padding: 40px;
}

.empty-cart p {
    margin-bottom: 20px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .item-image {
        margin: 0 auto;
    }
    
    .quantity-controls {
        justify-content: center;
    }
}

/* Cart Icon Styles */
.cart-icon {
    display: flex;
    align-items: center;
    position: relative;
}

.cart-icon a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: inherit;
}

.cart-icon-text {
    font-size: inherit;
    letter-spacing: inherit;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #000;
    color: white;
    font-size: 11px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    font-weight: 500;
}

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

.nav-list .cart-icon {
    margin-left: 20px;
}

.nav-list .cart-icon a {
    font-size: 12px;
    letter-spacing: 1px;
    color: #000;
    text-transform: uppercase;
}

.mobile-menu .cart-icon {
    padding: 15px 0;
}

/* Announcement Styles */
.notification-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f7f7f7;
    color: #333;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    padding: 10px 15px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.notification-bar p {
    margin: 0;
    text-align: center;
    flex-grow: 1;
    line-height: 1.5;
}

.coupon-code {
    font-weight: bold;
    color: #e94560; /* A Zara-like accent color */
}

.close-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    padding: 0 10px;
    line-height: 1;
    transition: opacity 0.2s;
}

.close-btn:hover {
    opacity: 0.6;
}

@media (min-width: 768px) {
    .notification-bar {
        font-size: 16px;
        padding: 15px 20px;
    }
}

/* Basic styling for the popup */
.popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background: transparent; /* No background */
    margin: 0;
    padding: 0;
}

/* Overlay background behind the popup (fully transparent overlay) */
.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* Ensure the overlay is transparent */
    z-index: 1;
}

/* Content area of the popup */
.popup-content {
    position: relative;
    z-index: 2;
    background: transparent; /* No background */
    padding: 0;
    margin: 0;
}

/* Ensure the image fits in the popup and is centered with no background */
.popup-content img {
    cursor: pointer;
    max-width: 100%; /* Use full width of the screen */
    max-height: 100%; /* Use full height of the screen */
    display: block;
    margin: 0;
    background: transparent; /* Ensure the image background is transparent */
}
