:root {
    --primary-red: hsl(0, 68%, 47%);
    --golden-yellow: hsl(50, 89%, 67%);
    --shine-gold: linear-gradient(45deg, #FFD700, #ffedb3, #ffdf4f, #ffc14d);
    --royal-blue: hsl(207, 60%, 48%);
    --warm-cream: hsl(37, 100%, 96%);
    --charcoal: hsl(211, 26%, 17%);
    --terracotta: hsl(0, 65%, 59%);
    --light-gray: hsl(210, 17%, 98%);
    --border-light: hsl(213, 27%, 84%);
    --shadow: hsla(0, 0%, 0%, 0.1);
    --shadow-hover: hsla(0, 0%, 0%, 0.15);
}

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


body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--warm-cream);
}

/* Scrollbar Styles */

body::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 10px;
}

body::-webkit-scrollbar {
    width: 5px;
}

/* Text Selection Styles */

body::selection {
  background: hsl(0, 61%, 51%);   /* background color for selected text */
  color: rgb(255, 255, 255);       /* text color for selected text */
}

body::-moz-selection {
  background: hsl(0, 61%, 51%);   /* background color for selected text */
  color: rgb(255, 255, 255);       /* text color for selected text */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 8px var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-red);
    text-decoration: none;
    z-index: 1100;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    transition: right 0.3s ease;
}

.nav-links li {
    display: block;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 1.05rem;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--golden-yellow);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cart-icon {
    background: var(--primary-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1100;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-icon:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--golden-yellow);
    color: var(--charcoal);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Hamburger Icon */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1200;
    background: rgb(221, 221, 221);
    border-radius: 25px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 3px;
    background: var(--primary-red);
    margin: 2px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile Navbar Styles */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 16vh;
        right: -100vw;
        height: auto;
        width: 100vw;
        background: white;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 2rem 2rem 2rem;
        box-shadow: -2px 0 12px var(--shadow-hover);
        z-index: 1050;
        transition: right 0.3s cubic-bezier(.77,0,.175,1);
        display: block;
    }
    .nav-links.open {
        right: 0vw;
        width: 100vw;
    }

    .nav-links ul {
        flex-direction: column;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    .cart-icon {
        margin-left: 1rem;
    }
}

/* Overlay for mobile menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: hsla(0,0%,0%,0.3);
    z-index: 1040;
    transition: opacity 0.3s;
}

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

/* Hide nav-links on desktop overlay */
@media (min-width: 901px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* Hero Section */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary-red) 100%, var(--terracotta) 100%);
    color: rgb(255, 255, 255);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}


.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    background: var(--shine-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--golden-yellow);
    color: var(--charcoal);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px hsla(0, 0%, 0%, 0.2);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: hsl(50, 78%, 62%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px hsla(0, 0%, 0%, 0.3);
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px hsla(0, 0%, 0%, 0.3);
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--warm-cream);
    box-shadow: #5252521a 0px 20px 30px -10px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--light-gray);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

/* Products Section */
.products {
    padding: 4rem 0;
    background: var(--warm-cream);
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-header h1,
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: hsl(0, 0%, 40%);
    max-width: 600px;
    margin: 0 auto;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px var(--shadow-hover);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(8px 8px 12px rgb(179, 144, 144));
    transition: transform 0.3s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--golden-yellow);
    color: var(--charcoal);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.product-info {
    padding: 0.5rem;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.product-description {
    color: hsl(0, 0%, 40%);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    
}

.product-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-red);
}

.add-to-cart {
    width: 100%;
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.add-to-cart:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
}

/* Product Link Styles */
.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.product-link:hover {
    text-decoration: none;
    color: inherit;
}

.product-actions {
    padding: 1.5rem;
    padding-top: 0;
}

/* Product Detail Page Styles */
.product-detail-page {
    min-height: 100vh;
    padding-bottom: 2rem;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.product-detail-image {
   height: 100%;
   position: relative;
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
   border-radius: 15px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
   cursor: pointer;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: contain;
    filter: drop-shadow(8px 8px 25px rgb(158, 158, 158));
    transition: transform 0.3s;
    position: absolute;
    left: 0;
    top: 0;
}

.product-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
    line-height: 1.2;
}

.product-detail-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #666;
}

.product-detail-store-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 99;
}

.product-detail-store-name i {
    color: var(--primary-red);
    font-size: 1.3rem;
}

.product-detail-location {
    font-size: 0.95rem;
    color: hsl(0, 0%, 40%);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-detail-location i {
    color: var(--royal-blue);
    font-size: 1.2rem;
}

.product-detail-rating {
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-detail-rating i {
    color: var(--golden-yellow);
    font-size: 1.2rem;
}

.product-detail-stock {
    font-size: 1.3rem;
    font-weight: bolder;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-detail-stock i{
    color: var(--royal-blue);
    font-size: 1.3rem;
}

.product-detail-price {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 1rem;
    border-radius: 10px;
    padding: 10px;
    width: fit-content;
    background: rgba(255, 139, 139, 0.288);
    cursor: pointer;
}

.explore-social {
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 1rem;
    gap: 1.9rem;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.explore-social:hover{
    background: #a1a1a17e;
}

.explore-social-p {
    display: flex;
    flex-direction: row;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-decoration: underline;
}

.explore-social:hover{
    text-decoration: none;
    color: var(--primary-red);
}

.explore-tiktok, .explore-insta, .explore-facebook {
    font-size: 1.7rem;
    
}

.explore-tiktok:hover, .explore-insta:hover, .explore-facebook:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.explore-tiktok{
    background: linear-gradient(45deg, #525252, #303030);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #000000;
    background-clip: text;
}

.explore-insta {
    background: radial-gradient(circle at 30% 107%, #fff04a 0%, #ffea00 5%, #fd5949 45%, #ff50c8 60%, #4170ff 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #E1306C;
    background-clip: text;
}

.explore-facebook {
    background: linear-gradient(45deg, #0066ff, #0052cc, #003d99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #1877F2;
    background-clip: text;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.add-to-cart-detail {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.add-to-cart-detail:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
}

.share-button {
    background: var(--royal-blue);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.share-button:hover {
    background: hsl(207, 60%, 40%);
    transform: translateY(-2px);
}

.back-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

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

/* Filters Section */
.filters-section {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: center;
    background: transparent;
    
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    min-width: 180px;
}

.filter-group label {
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.2rem;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}

.filter-group select {
    padding: 0.7rem 1.2rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    color: var(--charcoal);
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 6px var(--shadow);
    outline: none;
    cursor: pointer;
}

.filter-group select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 2px hsla(0, 63%, 47%, 0.15);
}

.filter-group option {
    padding: 0.5rem;
    background: white;
    color: var(--charcoal);
    font-size: 1rem;
}

/* Responsive for Filters Section */
@media (max-width: 768px) {
    .filters-section {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    .filter-group {
        min-width: 100%;
    }
}

/* Cart Page Styles */
.cart-page,
.checkout-page,
.products-page {
    min-height: 100vh;
    padding-bottom: 2rem;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px var(--shadow);
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-info h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.cart-item-info p {
    color: hsl(0, 0%, 40%);
    font-size: 0.9rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: var(--border-light);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.quantity-btn:hover {
    background: var(--primary-red);
    color: white;
}

.remove-btn {
    background: var(--terracotta);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.remove-btn:hover {
    background: hsl(0, 65%, 45%);
}

.cart-summary {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    height: fit-content;
}

.cart-summary h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
}

.summary-row.total {
    border-top: 2px solid var(--border-light);
    padding-top: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-red);
}

.checkout-button {
    width: 100%;
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.checkout-button:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart-content h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    font-size: 2rem;
}

/* Checkout Page Styles */
.checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.checkout-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.checkout-form h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 2px hsla(0, 63%, 47%, 0.2);
}

.place-order-button {
    width: 100%;
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.place-order-button:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
}

.order-summary {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    height: fit-content;
}

.order-summary h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.order-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.order-item-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.order-item-info p {
    font-size: 0.8rem;
    color: hsl(0, 0%, 40%);
}

.order-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-light);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

/* Newsletter Section */
.newsletter {
    background: var(--royal-blue);
    color: white;
    padding: 3rem 0;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.newsletter h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-input {
    flex: 1;
    font-family: 'Playfair Display', serif;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-button {
    background: var(--golden-yellow);
    color: var(--charcoal);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-button:hover {
    background: hsl(50, 78%, 62%);
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: var(--golden-yellow);
}

.footer-section a {
    color: hsl(213, 27%, 80%);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--golden-yellow);
}

.footer-bottom {
    border-top: 1px solid hsl(213, 15%, 30%);
    padding-top: 1rem;
    text-align: center;
    color: hsl(213, 12%, 65%);
}

.footer-bottom p a{
    text-align: center;
    color: hsl(213, 12%, 65%);
    text-decoration: underline;
}

.footer-bottom p a:hover{
    color: hsl(0, 65%, 59%);
}



/* Loading and Empty States */
.loading-state,
.empty-state {
    text-align: center;
    padding: 3rem;
    color: hsl(0, 0%, 40%);
}

.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .product-title {
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 1rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cart-content,
    .checkout-content {
        grid-template-columns: 1fr;
    }

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

    .cart-item {
        display: flex;
        flex-direction: column;
        align-items: start;
        text-align: center;
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .cart-item .quantity-controls,
    .cart-item .remove-btn {
        grid-column: 1 / -1;
        justify-self: center;
        margin-top: 0.5rem;
    }

    .filters-section {
        flex-direction: column;
        gap: 1rem;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-detail-image {
        height: auto;
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .product-detail-image img{
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        filter: drop-shadow(4px 4px 10px rgb(0,0,0));
        display: block;
        left: unset;
        top: unset;
    }

    .slider-btn {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }



    .hero-container,
    .features-container,
    .products-container,
    .newsletter-container,
    .footer-container,
    .container {
        padding: 0 1rem;
    }

    .features-grid {
        gap: 1rem;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .feature-card {
        padding: 0.8rem;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.8rem;
    }

    .products-grid {
        gap: 10px;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .product-badge {
        font-size: 0.4rem;
        padding: 5px;
        top: 5px;
        left: 5px;
    }

    .product-image{
        height: 90px;
    }

    .product-title {
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 0.55rem;
        margin-bottom: 0.2rem;
    }

    .product-description {
        font-size: 0.4rem;
        margin-bottom: 0.2rem;
    }

    .product-price {
        position: relative;
        font-size: 0.6rem;
    }
    .product-actions {
        width: 100%;
        padding: 5px;
    }

    .add-to-cart {
        padding: 0.5rem;
        font-size: 0.6rem;
    }


    .hero-text h1 {
        font-size: 1.4rem;
    }

    .hero-text p {
        font-size: 0.8rem;
    }

    
    .section-header h1,
    .section-header h2 {
        font-size: 1.4rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter h2 {
        font-size: 1.5rem;
    }

    .newsletter p {
        font-size: 0.9rem;
    }

    .newsletter-input {
        padding: 0.9rem;
        font-size: 0.9rem;
    }

    .newsletter-button {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
        text-align: start;
    }

    .footer-section div {
        font-size: 0.9rem; ;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .footer-section p{
        font-size: 0.8rem;
    }
    .footer-section a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    .filters-section {
        flex-direction: row;
        padding: 0.4rem;
    }

    .filter-group {
        min-width: auto;
        width: 50%;
    }

    #category-filter {
        width: 100%;
        padding: 0.5rem;
    }

    #sort-filter {
        width: 100%;
        padding: 0.5rem;
    }

    .product-detail-title {
        font-size: 1.4rem;
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-detail-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .product-detail-price {
        font-size: 1.3rem;
        margin-bottom: 0.4rem;
    }

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

    .share-button {
        display: flex;
        justify-content: center;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .product-detail-image {
        height: auto;
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }


    .slider-btn {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }
}

/* Image Slider Styles */

.slider-btn {
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

.slide-in-right {
  animation: slideInRight 0.3s forwards;
}
.slide-in-left {
  animation: slideInLeft 0.3s forwards;
}
.slide-out {
  animation: slideOutLeft 0.3s forwards;
}
.slide-in {
  opacity: 1;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes slideInLeft {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOutLeft {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(-100%); opacity: 0; }
}

/* Add below your existing CSS or in the appropriate section */

/* Product Detail Extra Info Styles */
.product-detail {
    border-radius: 15px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2rem 2.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 1.08rem;
    color: var(--charcoal);
}

.product-detail h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary-red);
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
}

.product-detail-full-description {
    font-size: 1.08rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.product-detail p {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.7rem;
    font-size: 1.02rem;
}

.product-detail p:last-child {
    margin-bottom: 0;
}

.product-detail i {
    color: var(--primary-red);
    font-size: 1.15rem;
    min-width: 1.5em;
    text-align: center;
}

.product-detail b {
    font-weight: 600;
    margin-right: 0.3em;
    color: var(--charcoal);
}

.partner-marquee-outer {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
}

.partner-marquee-inner {
  display: flex;
  gap: 2rem;
  will-change: transform;
}

.partner-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 1.2rem 1.5rem;
  min-width: 220px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.partner-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

.partner-card-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: #f7f7f7;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.partner-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-red);
  margin-bottom: 0.3rem;
  text-align: center;
}

.partner-card-location {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.3rem;
  text-align: center;
}

.partner-card-contact {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 0.5rem;
  text-align: center;
}

.partner-card-website {
  color: var(--royal-blue);
  font-size: 0.95rem;
  text-decoration: underline;
  margin-top: 0.3rem;
  text-align: center;
}

@media (max-width: 768px) {

    .product-detail{
        padding: 1rem 1rem;
        font-size: 0.9rem;
    }

    .product-detail-full-description {
        font-size: 0.1rem;
    }

    .product-detail p {
        font-size: 0.7rem;
    }

    .area, .material, .delivery, .care-instructions, .authenticity {
        display: flex;
        flex-direction: row;
        align-items: start;
        justify-content: flex-start;
        font-size: 0.5rem;
    }


}

@media (max-width: 768px) {
  .partner-marquee-inner {
    gap: 1rem;
  }
  .partner-card {
    min-width: 160px;
    max-width: 180px;
    padding: 0.7rem 0.5rem;
  }
  .partner-card-logo {
    width: 40px;
    height: 40px;
  }
}

/* SITE LOADER STYLES */
.site-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,250,245,1) 0%, rgba(255,245,238,1) 100%);
  z-index: 99999;
  transition: opacity 450ms ease, visibility 450ms ease;
  opacity: 1;
  visibility: visible;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
 
}

.site-loader--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  
}

/* inner card */
.site-loader-inner {
  text-align: center;
  padding: 26px 28px;
  border-radius: 14px;
  background: white;
  box-shadow: 0 12px 40px rgba(23, 15, 10, 0.12);
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  min-width: 220px;
  animation: grow-In 0.5s ease forwards;
}

/* logo */
.loader-logo {
  width: 86px;
  height: 86px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.10);
  background: linear-gradient(180deg, #fff 0%, #fff7f0 100%);
  padding: 8px;
}

/* text */
.loader-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--primary-red);
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* spinner */
.loader-spinner {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: conic-gradient(var(--primary-red) 0deg, rgba(0,0,0,0.06) 220deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 8px), black calc(100% - 8px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 8px), black calc(100% - 8px));
  animation: loader-rotate 1.1s linear infinite;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
}

@keyframes grow-In {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes loader-rotate {
  to { transform: rotate(360deg); }
}

/* small screens: keep loader centered and compact */
@media (max-width: 480px) {
  .site-loader-inner { padding: 16px; min-width: 180px; }
  .loader-logo { width: 64px; height: 64px; }
  .loader-text { font-size: 0.95rem; }
}