/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #000000;
    --accent-color: #f8f8f8;
    --text-color: #000000;
    --light-text: #666666;
    --gold-color: #C5A45B;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--accent-color);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 3px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    font-family: 'Playfair Display', serif;
}

h1 {
    font-size: 4.5rem;
    font-weight: 300;
}

h2 {
    font-size: 3.5rem;
    font-weight: 300;
}

h3 {
    font-size: 2rem;
    font-weight: 400;
}

p {
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.7;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(-40px) scale(0.8);
        opacity: 0;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Buttons */
.btn-primary,
.btn-secondary,
.add-to-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    border: none;
    border-radius: 0;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.btn-primary,
.add-to-cart {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid var(--secondary-color);
}

.btn-primary:hover,
.add-to-cart:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--primary-color);
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-logo a {
    color: var(--secondary-color);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
}

.logo-img {
    height: 50px;
    /* adjust as needed */
    width: auto;
}


.nav-menu {
    display: flex;
    gap: 50px;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 300;
    transition: var(--transition);
    position: relative;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 8px 16px;
    margin-left: 20px;
}

.cart-icon {
    font-size: 1.2rem;
    position: relative;
}

#cart-count {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 400;
    position: absolute;
    top: -5px;
    right: -5px;
}

/* Cart Item Styles */
.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-bottom: 1px solid #e0e0e0;
    background: var(--primary-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 120px;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 400;
}

.cart-item-price {
    color: var(--light-text);
    font-size: 1rem;
    margin-bottom: 10px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-color);
    padding: 8px 15px;
    border-radius: 20px;
}

.quantity-btn {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.quantity-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.quantity-display {
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}

.remove-btn {
    background: transparent;
    border: 1px solid var(--error-color);
    color: var(--error-color);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.remove-btn:hover {
    background: var(--error-color);
    color: var(--primary-color);
}

.cart-item-total {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Checkout Item Styles */
.checkout-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-image {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.checkout-item-details {
    flex: 1;
}

.checkout-item-details h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 400;
}

.checkout-item-price {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.checkout-item-quantity {
    color: var(--light-text);
    font-size: 0.8rem;
}

.checkout-item-total {
    font-weight: 500;
}

/* Empty States */
.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light-text);
}

.empty-cart p {
    color: var(--light-text);
    margin-bottom: 25px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cart-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cart-item-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cart-item-image {
        width: 80px;
        height: 100px;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 1px;
    background: var(--text-color);
    margin: 4px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 6rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--light-text);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

/* Hero Slideshow */

/* Hero Slideshow - FIXED */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    /* Account for fixed navbar */
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);

    /* background: rgba(252, 248, 248, 0.5); */
    padding: 60px 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content h1 {
    font-size: 6rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--light-text);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

.cta-button {
    position: relative;
    z-index: 3;
    text-decoration: none;
}

/* Fixed Marquee Section */
.marquee {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    padding-left: 100%;
    /* Start off-screen */
}

.marquee-content span {
    margin: 0 40px;
    display: inline-block;
}

/* Smooth marquee animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Ensure marquee is always visible */
.marquee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    z-index: -1;
}

.cta-button {
    font-size: 0.9rem;
    padding: 18px 50px;
    letter-spacing: 2px;
}

/* Marquee Section */
.marquee {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

.marquee-content span {
    margin: 0 40px;
}

/* Shop Section */
.shop {
    padding: 120px 0;
    background: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.product-card {
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.product-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-info {
    text-align: center;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-price {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 15px;
    font-weight: 300;
}

.add-to-cart {
    width: 100%;
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 12px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.add-to-cart:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.add-to-cart.added {
    background: var(--success-color);
    border-color: var(--success-color);
    color: var(--primary-color);
    animation: pulse 0.6s ease-out;
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--accent-color);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--light-text);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--primary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h3 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-weight: 300;
}

.contact-info p {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--secondary-color);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--light-text);
    font-weight: 300;
}

.contact-form button {
    align-self: flex-start;
    margin-top: 20px;
}

/* Footer Styles */
.footer {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    text-align: left;
}

.footer-brand h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 2px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

.footer-links h4,
.footer-social h4 {
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 300;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.social-link:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Mobile Responsive for Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-links ul {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-links {
        justify-content: center;
    }
}

/* Notification */
.notification {
    position: fixed;
    top: 120px;
    right: 30px;
    background: var(--secondary-color);
    color: white;
    padding: 20px 30px;
    z-index: 1001;
    transform: translateX(400px);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-weight: 300;
    letter-spacing: 1px;
}

.notification.show {
    transform: translateX(0);
}

/* Cart Page Styles */
.cart-section {
    padding: 140px 0 80px;
    min-height: 80vh;
}

.cart-items {
    margin-bottom: 40px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 120px;
    height: 160px;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.cart-item-price {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-btn {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.quantity-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.remove-btn {
    background: transparent;
    border: 1px solid var(--error-color);
    color: var(--error-color);
    padding: 10px 20px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.remove-btn:hover {
    background: var(--error-color);
    color: var(--primary-color);
}

.cart-total {
    text-align: right;
    margin-bottom: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.cart-total h3 {
    font-size: 1.8rem;
    font-weight: 400;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {

    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
    }

    .cart-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 40px 0;
        gap: 30px;
        box-shadow: var(--shadow-hover);
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .cart-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cart-item-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Add these to your existing CSS */
@keyframes float {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(-50px) scale(0.8);
        opacity: 0;
    }
}

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #000000;
    color: white;
    padding: 15px 25px;
    border-radius: 0;
    z-index: 1001;
    transform: translateX(400px);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.notification.show {
    transform: translateX(0);
}

#cart-count.cart-update {
    animation: pulse 0.6s ease-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Ensure all images are visible */
.product-card img {
    opacity: 1 !important;
}


/* Checkout Page Styles */
.checkout-section {
    padding: 140px 0 80px;
    min-height: 80vh;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.order-summary,
.checkout-form {
    background: var(--primary-color);
    padding: 40px;
    border: 1px solid #e0e0e0;
}

.order-summary h3,
.checkout-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-image {
    width: 80px;
    height: 100px;
    object-fit: cover;
    flex-shrink: 0;
}

.checkout-item-details {
    flex: 1;
}

.checkout-item-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 400;
}

.checkout-item-price {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.checkout-item-quantity {
    color: var(--light-text);
    font-size: 0.8rem;
}

.checkout-item-total {
    font-weight: 500;
    font-size: 1rem;
}

.order-total {
    text-align: right;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.order-total h3 {
    font-size: 1.5rem;
    font-weight: 400;
    border: none;
    padding: 0;
}

/* Checkout Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--secondary-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-text);
    font-weight: 300;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover {
    border-color: var(--secondary-color);
}

.payment-option.selected {
    border-color: var(--secondary-color);
    background: rgba(0, 0, 0, 0.02);
}

.payment-option input[type="radio"] {
    margin: 0;
    width: 18px;
    height: 18px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--primary-color);
    padding: 50px;
    border-radius: 0;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--light-text);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    color: var(--error-color);
}

/* Mobile Responsive for Checkout */
@media (max-width: 992px) {
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .checkout-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .checkout-item-image {
        width: 60px;
        height: 80px;
    }
}

@media (max-width: 576px) {

    .order-summary,
    .checkout-form {
        padding: 30px 20px;
    }

    .modal-content {
        padding: 30px 20px;
    }
}

/* Ensure proper content stacking */
.hero {
    position: relative;
    z-index: 1;
    /* Below navbar but above other content */
}

.marquee {
    position: relative;
    z-index: 2;
    background: var(--secondary-color);
}

.shop {
    position: relative;
    z-index: 2;
    background: var(--primary-color);
}

/* Social Icons Styles */
.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    padding: 10px;
}

.social-link:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Luxury Casuals Section */
/* Luxury Casuals Section */
.luxury-casuals {
    padding: 100px 0;
    background: var(--primary-color);
}

.luxury-casuals .section-title p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-top: -20px;
    margin-bottom: 40px;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Make Luxury Casuals product images smaller */
.luxury-casuals .product-image-container {
    height: 400px;
    /* Smaller than the main collection's 500px */
}

.luxury-casuals .product-card img {
    height: 400px;
    /* Smaller than the main collection's 500px */
    object-fit: cover;
}

/* Responsive adjustments for luxury casuals */
@media (max-width: 768px) {
    .luxury-casuals .product-image-container {
        height: 350px;
    }

    .luxury-casuals .product-card img {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .luxury-casuals .product-image-container {
        height: 300px;
    }

    .luxury-casuals .product-card img {
        height: 300px;
    }

    .luxury-casuals {
        padding: 80px 0;
    }
}

/* Responsive adjustments for luxury casuals */
@media (max-width: 768px) {
    .casuals-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .casual-product-card img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .casuals-grid {
        grid-template-columns: 1fr;
    }

    .luxury-casuals {
        padding: 80px 0;
    }
}

/* Luxury Casuals Section - Smaller Images */
/* Luxury Casuals Section - Smaller Images */
.luxury-casuals {
    padding: 100px 0;
    background: var(--primary-color);
}

.luxury-casuals .section-title p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-top: -20px;
    margin-bottom: 40px;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Make Luxury Casuals product images smaller */
.luxury-casuals .product-image-container {
    height: 350px;
    /* Smaller than main collection (500px) */
}

.luxury-casuals .product-card img {
    height: 350px;
    /* Smaller than main collection (500px) */
    object-fit: cover;
}

/* Optional: Make the product cards slightly smaller too */
.luxury-casuals .product-card {
    transition: var(--transition);
}

.luxury-casuals .product-card:hover {
    transform: translateY(-8px);
    /* Slightly less hover lift than main collection */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .luxury-casuals .product-image-container {
        height: 300px;
    }

    .luxury-casuals .product-card img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .luxury-casuals .product-image-container {
        height: 250px;
    }

    .luxury-casuals .product-card img {
        height: 250px;
    }

    .luxury-casuals {
        padding: 80px 0;
    }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #333;
    transform: translateY(-5px);
}

/* Active nav link styles */
.nav-link.active {
    color: var(--secondary-color);
    font-weight: 500;
}

.nav-link.active::after {
    width: 100%;
}

/* Enhanced Sticky Navbar - WORKING VERSION */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--primary-color);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Sticky navbar with background when scrolled */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Active nav link styles - ENHANCED */
.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 300;
    transition: var(--transition);
    position: relative;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--secondary-color);
    font-weight: 500;
}

/* Adjust sections for fixed navbar */
section {
    scroll-margin-top: 80px;
}

.hero {
    margin-top: 80px;
    height: calc(100vh - 80px);
}

/* Ensure content doesn't hide behind navbar */
.shop,
.about,
.luxury-casuals,
.contact {
    padding: 100px 0;
}

/* Ensure checkout form works properly */
#checkout-form .btn-primary {
    width: 100%;
    margin-top: 20px;
}

.payment-option.selected {
    border-color: var(--secondary-color);
    background: rgba(0, 0, 0, 0.02);
}

/* Success modal styling */
.modal.show {
    display: flex !important;
}

.modal-content .btn-primary {
    width: auto;
    margin-top: 20px;
}