:root{
      --bg: #fefefe;
      --accent: #D4AF37; /* richer gold */
      --accent-2: #2d3748; /* deeper slate */
      --muted: #718096;
      --radius: 16px;
      --shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    *{
        box-sizing:border-box
    }

    /* General body styling for context */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-image:url(images/design8.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: fit-content;
    
    
}

/* Style the header container */
header {
    display: flex; /* Make the header a flex container */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center items horizontally within the header */
    padding: 20px;
    background-color: rgba(248, 248, 248, 0.95);
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: background-color 0.3s;
}

/* Style the logo container */
.logo-container {
    margin-bottom: 15px; /* Add space between the logo and the navbar */
    background-color:ghostwhite;
    background-image: url(images/design8.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    border-style: none;
}

/* Style the navigation bar */
nav ul {
    display: flex; /* Make the list a flex container for horizontal links */
    list-style: none; /* Remove bullet points */
    padding: 0;
    margin: 0;
    justify-content: space-between;
    gap: 20px; /* Add space between nav links */
}

nav a {
    display: inline-block;
    padding: 8px 16px;/* box ke andar space*/
    border: 2px solid #2d3748;  /* box border*/
    border-radius: 6px;
    text-decoration: none;
    color: bisque;
    transition: all 0.3 ease;
    background-color:#2d3748;

}

nav a:hover {
    background-color:palevioletred;
    color:black;
    transform: scale(1.05);
    box-shadow: 0 4px 12px pink (212, 175, 55, 0.3);
}


.brand h1{
    font-size:18px;
    margin:0
}

.brand p{
    margin:0;
    font-size:12px;
    color:var(--muted)
}

nav a:hover{
    background:#f8f4f0
} */


.cta{
    background:var(--accent);
    color:#fff;
    padding:8px 14px;
    border-radius:10px
}

.hero{
    display:grid;
    grid-template-columns:1fr 520px;
    gap:36px;
    align-items:center;
    padding:56px 6vw
}

.hero-left{
    max-width:730px
}

.eyebrow{
    font-size:14px;
    color:crimson;
    text-transform:uppercase;
    font-weight: bolder;
    text-shadow: black 4 4;
    letter-spacing:1.6px;
    margin-bottom:18px
}

.hero h2{
    font-family:'Playfair Display',serif;font-size:44px;
    line-height:1.02;
    margin:0 0 18px;
}

.lead{
    font-size:16px;
    color:var(--accent-2);
    margin-bottom:26px;
}

.hero-buttons{
    display:flex;
    gap:14px
}

.btn{
    padding:12px 18px;
    border-radius:10px;
    border:none;
    font-weight:600;
    cursor:pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn:hover{
    background-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline{
    background:transparent;
    border:1px solid #ddd;
    transition: border-color 0.3s, background-color 0.3s, transform 0.2s;
}

.btn-outline:hover{
    border-color: var(--accent);
    background-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.hero-right{
    background:#fdfaf6;
    border-radius:18px;
    padding:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 30px rgba(19,19,24,0.04)
}

/* Container */
.slider-container {
  position: relative;
  width: 80%;        /* jitna chhahiye utna width */
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Images wrapper */
.slider{
  display: flex;
   /* 8 images=8*1=800%*/
  animation: slide 24s infinite; /* 24s total duration for 8 images*/
}

/* Each image */
.slider-container img {
  width: 100%;
  flex-shrink: 0;
  object-fit:cover;
  height: 600px; /* apni marzi se height */
  border-radius: 15px;
  transition: transform 0.3s ease;
  position: relative;
}

.slider-container img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0,0,0,0.2) 100%);
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slider-container img:hover {
  transform: scale(1.05);
}

.slider-container img:hover::before {
  opacity: 1;
}

/* Keyframes for 8 images sliding */
@keyframes slide {
  0%   { transform: translateX(0%); }
  10%  { transform: translateX(0%); }

  12.5%  { transform: translateX(-100%); }
  22.5%  { transform: translateX(-100%); }

  25%  { transform: translateX(-200%); }
  35%  { transform: translateX(-200%); }

  37.5%  { transform: translateX(-300%); }
  47.5%  { transform: translateX(-300%); }

  50% {transform:  translateX(-400%);}
  60%{transform:   translateX(-400%);}

  62.5% {transform:  translateX(-500%);}
  72.5%{transform:   translateX(-500%);}

  75% {transform:  translateX(-600%);}
  85%{transform:   translateX(-600%);}

  87.5% {transform:  translateX(-700%);}
  97.5%{transform:   translateX(-700%);}

  100% { transform: translateX(0%);}  


}

/* features */
.features{
    display:flex;
    gap:18px;
    padding:26px 6vw
}

.feature{
    flex:1;
    background:#fff;
    border-radius:12px;
    padding:18px;
    border:1px solid #f1efe9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.feature:hover{
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.feature h4{
    margin:0 0 6px
}

.feature p{
    margin:0;
    color:var(--muted);
    font-size:14px
}


/* small touchups */
.container{
    max-width:1200px;
    margin:0 auto

}


/* Lookbook CSS Start */
.lookbook-hero {
    text-align: center;
    padding: 56px 6vw;
    background: linear-gradient(135deg, #fefefe 0%, #f8f4f0 100%);
}

.lookbook-hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    margin: 0 0 18px;
    color: var(--accent-2);
}

.lookbook-hero p {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 26px;
}

.lookbook-gallery {
    padding: 26px 6vw;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background-color: #f8f4f0;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Modal styles for lookbook */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80vh;
    object-fit: contain;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive for lookbook */
@media (max-width: 760px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 12px;
    }

    .gallery-grid img {
        height: 200px;
    }

    .lookbook-hero h2 {
        font-size: 32px;
    }
}
/* Lookbook CSS End */



/* Blog CSS Start */
.blog-hero {
    text-align: center;
    padding: 56px 6vw;
    background: linear-gradient(135deg, #fefefe 0%, #f8f4f0 100%);
}

.blog-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    margin: 0 0 18px;
    color: var(--accent-2);
}

.blog-hero p {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 26px;
}

.featured-post {
    padding: 56px 6vw;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    background: #fff;
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.featured-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.featured-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin: 0 0 18px;
    color: var(--accent-2);
}

.featured-text p {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 26px;
}

.blog-posts {
    padding: 56px 6vw;
}

.blog-posts h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 36px;
    color: var(--accent-2);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.post-card img {
    width: 100%;
    height: 250px;
    object-fit:contain;
    object-position: center;
    border-radius: 8px 8px 0 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f8f4f0;
}

.post-card img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.post-card h3 {
    padding: 18px 18px 0;
    margin: 0;
    font-size: 20px;
    color: var(--accent-2);
}

.post-card p {
    padding: 12px 18px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.read-more {
    display: inline-block;
    padding: 8px 18px;
    margin: 0 18px 18px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.read-more:hover {
    background: var(--accent-2);
}

/* Responsive for blog */
@media (max-width: 760px) {
    .blog-hero h1 {
        font-size: 32px;
    }

    .featured-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blog-posts h2 {
        font-size: 28px;
    }
}
/* Blog CSS End */

/* CONTACT PAGE CSS START */
.contact-hero {
    text-align: center;
    padding: 56px 6vw;
    background: linear-gradient(135deg, #fefefe 0%, #f8f4f0 100%);
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    margin: 0 0 18px;
    color: var(--accent-2);
}

.contact-hero p {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 26px;
}

.contact-section {
    padding: 56px 6vw;
    background: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form h2,
.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin: 0 0 26px;
    color: var(--accent-2);
}

.form {
    background: #fff;
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--accent-2);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #f1efe9;
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

.info-card {
    background: #f8f4f0;
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid var(--accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.info-card h3 {
    margin: 0 0 12px;
    color: var(--accent-2);
    font-size: 18px;
}

.info-card p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.small-text {
    font-size: 12px !important;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.1);
    transition: background-color 0.3s;
}

.social-link:hover {
    background: var(--accent);
    color: #fff;
}

.map-container {
    background: #f8f4f0;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--muted);
}

.map-placeholder p {
    margin: 8px 0;
    font-size: 16px;
}

.faq-section {
    padding: 56px 6vw;
    background: linear-gradient(135deg, #fefefe 0%, #f8f4f0 100%);
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 36px;
    color: var(--accent-2);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.faq-item h3 {
    margin: 0 0 12px;
    color: var(--accent-2);
    font-size: 18px;
}

.faq-item p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Modal styles for contact success */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 0;
    border: none;
    border-radius: 18px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.modal-body {
    padding: 36px;
    text-align: center;
}

.modal-body h3 {
    margin: 0 0 16px;
    color: var(--accent-2);
    font-family: 'Playfair Display', serif;
    font-size: 24px;
}

.modal-body p {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 16px;
}

/* Responsive for contact page */
@media (max-width: 980px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-form h2,
    .contact-info h2 {
        font-size: 28px;
    }

    .form {
        padding: 24px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .faq-section h2 {
        font-size: 28px;
    }

    .modal-content {
        margin: 20% auto;
        width: 95%;
    }
}
/* CONTACT PAGE CSS END */

/* ===== SHOP PAGE CSS START ===== */

/* Shop Hero Section */
.shop-hero {
    background: linear-gradient(135deg, #fefefe 0%, #f8f4f0 100%);
    padding: 56px 6vw;
    text-align: center;
}

.shop-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin: 0 0 18px;
    color: var(--accent-2);
    position: relative;
}

.shop-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.shop-subtitle {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Shop Controls */
.shop-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-top: 36px;
}

.search-container {
    position: relative;
    max-width: 400px;
    flex: 1;
    min-width: 250px;
}

.search-input {
    width: 100%;
    padding: 12px 50px 12px 16px;
    border: 2px solid #f1efe9;
    border-radius: 50px;
    font-size: 16px;
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    pointer-events: none;
}

.category-filter,
.sort-filter {
    padding: 12px 16px;
    border: 2px solid #f1efe9;
    border-radius: 12px;
    font-size: 16px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
    min-width: 180px;
}

.category-filter:focus,
.sort-filter:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Products Grid */
.shop-products {
    padding: 56px 6vw;
    background: #fefefe;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 36px;
}

.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: #fff;
    color: var(--accent-2);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.product-card:hover .quick-view-btn {
    transform: translateY(0);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-2);
    margin: 0 0 8px;
    font-family: 'Playfair Display', serif;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    margin: 0 0 12px;
}

.product-category {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    text-transform: capitalize;
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge {
    background: var(--accent);
    color: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 36px;
}

.load-more-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.load-more-btn:hover {
    background: var(--accent-2);
    transform: translateY(-2px);
}

/* Product Modal */
.product-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow-y: auto;
}

.product-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    border-radius: 18px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--muted);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--accent-2);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 36px;
}

.modal-images {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.main-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.thumbnail-images {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.thumbnail-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, border 0.3s;
    border: 2px solid transparent;
}

.thumbnail-images img:hover,
.thumbnail-images img.active {
    transform: scale(1.05);
    border-color: var(--accent);
}

.modal-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin: 0 0 16px;
    color: var(--accent-2);
}

.modal-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.modal-description {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Size Selection */
.size-selection,
.quantity-selection {
    margin-bottom: 24px;
}

.size-selection h4,
.quantity-selection h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-2);
    margin-bottom: 12px;
}

.size-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.size-btn {
    padding: 10px 16px;
    border: 2px solid #f1efe9;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.size-btn:hover,
.size-btn.selected {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

/* Quantity Controls */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #f1efe9;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
}

.quantity-btn:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

#quantityInput {
    width: 60px;
    padding: 8px;
    border: 2px solid #f1efe9;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
}

/* Action Buttons */
.add-to-cart-btn,
.wishlist-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.add-to-cart-btn {
    background: var(--accent);
    color: #fff;
}

.add-to-cart-btn:hover {
    background: var(--accent-2);
    transform: translateY(-2px);
}

.wishlist-btn {
    background: transparent;
    color: var(--accent-2);
    border: 2px solid var(--accent);
}

.wishlist-btn:hover {
    background: var(--accent);
    color: #fff;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1002;
}

.cart-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Footer */
footer {
    background: var(--accent-2);
    color: #fff;
    padding: 56px 6vw 24px;
    margin-top: 56px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 36px;
    margin-bottom: 36px;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--accent);
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 24px;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* Responsive Design for Shop */
@media (max-width: 980px) {
    .shop-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .search-container {
        max-width: none;
    }

    .modal-body {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .modal-images {
        order: -1;
    }

    .main-image img {
        height: 300px;
    }
}

@media (max-width: 760px) {
    .shop-hero h1 {
        font-size: 36px;
    }

    .shop-subtitle {
        font-size: 16px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 18px;
    }

    .product-image {
        height: 250px;
    }

    .modal-content {
        width: 95%;
        margin: 20px auto;
    }

    .modal-body {
        padding: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .shop-hero {
        padding: 36px 4vw;
    }

    .shop-products {
        padding: 36px 4vw;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 200px;
    }
}

/* ===== SHOP PAGE CSS END ===== */

