*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --gold: #E8A020;
    --gold-light: #F5C060;
    --dark: #0f0f0f;
    --mid: #1a1a1a;
    --text: #1c1c1c;
    --muted: #666;
    --border: #e5e5e5;
    --white: #fff;
    --bg: #fafaf8;
    --tag-bg: #f2f2f0;
    --radius: 10px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
  }

  /* ─── NAVBAR ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 32px;
    height: 75px;
    background: rgba(10,10,10,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }
  nav.scrolled {
    background: #0f0f0f;
    backdrop-filter: none;
    border-bottom-color: rgba(255,255,255,0.1);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  }

  .nav-left {
    display: flex; align-items: center; gap: 28px;
  }

  .nav-menu-btn {
    display: flex; align-items: center; gap: 8px;
    color: #ffffff; font-size: 17px; font-weight: 500;
    cursor: pointer; border: none; background: none;
    letter-spacing: 0.04em;
  }

  .nav-menu-btn span { font-size: 17px; }

  .logo a{
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
}

  .logo em { color: var(--gold); font-style: normal; }

  .logo img {
    width: 249px;
}

  .nav-right {
    display: flex; align-items: center; gap: 16px;
  }

  .nav-pricing {
    color: #fff; font-size: 17px; font-weight: 500;
    cursor: pointer; border: none; background: none;
    letter-spacing: 0.02em;
  }

  .btn-signin {
    background: #ECA931;
    background: linear-gradient(45deg,rgba(236, 169, 49, 1) 0%, rgba(188, 82, 87, 1) 100%);
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 400;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background 0.2s;
    text-shadow: -1px 1px #000;
}
  .btn-signin:hover {
    background: #ECA931;
    background: linear-gradient(45deg,rgba(188, 82, 87, 1) 0%, rgba(236, 169, 49, 1) 100%);
  }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    height: 520px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 0px;
  }

  .hero-bg {
    position: absolute; inset: 0;
    overflow: hidden;
  }

  .hero-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.2s ease, transform 6s ease;
    will-change: opacity, transform;
  }

  .hero-slide.active {
    opacity: 1;
    transform: scale(1);
  }

  /* Dark overlay on top of each slide */
  .hero-slide::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.45) 0%,
      rgba(0,0,0,0.25) 40%,
      rgba(0,0,0,0.55) 100%
    );
  }

  /* Slide indicator dots */
  .hero-dots {
    position: absolute;
    bottom: 22px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px;
    z-index: 5;
  }

  .hero-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none; padding: 0;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, width 0.3s;
  }

  .hero-dot.active {
    background: var(--gold);
    width: 22px;
    border-radius: 4px;
  }

  .hero-overlay {
    position: absolute; inset: 0;
    background: 
      radial-gradient(ellipse 60% 60% at 70% 40%, rgba(232,160,32,0.18) 0%, transparent 70%),
      radial-gradient(ellipse 40% 50% at 20% 60%, rgba(80,20,120,0.22) 0%, transparent 70%);
  }


  /* Decorative bokeh circles */
  .hero-circles { position: absolute; inset: 0; pointer-events: none; }
  .hero-circles::before, .hero-circles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
  }
  .hero-circles::before {
    width: 300px; height: 300px;
    background: var(--gold);
    top: -80px; right: 15%;
  }
  .hero-circles::after {
    width: 200px; height: 200px;
    background: #8040c0;
    bottom: -60px; left: 10%;
  }

  .hero-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
  }

  .hero h1 {
    font-family: "Roboto", sans-serif;
    font-size: clamp(28px, 4vw, 47px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    max-width: 100%;
    letter-spacing: -0.02em;
    text-shadow: -2px 2px #171717;
  }

  .hero-sub {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-shadow: -2px 2px #171717;
  }

  /* Search bar */
  .search-bar-box {
    background: rgba(0,0,0,0.5);
    padding: 15px;
    border-radius: 10px;
  }

  .search-bar {
    display: flex; align-items: center;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    width: min(840px, 90vw);
    margin-top: 0px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  }

  .search-select {
    display: flex; align-items: center; gap: 6px;
    padding: 0 16px;
    height: 52px;
    border-right: 1px solid #e0e0e0;
    font-size: 13px; font-weight: 500;
    color: #444;
    cursor: pointer;
    white-space: nowrap;
    background: #f7f7f7;
    font-family: "Poppins", sans-serif;
  }

  .search-select span { font-size: 15px; }

  .search-input {
    flex: 1;
    height: 52px;
    border: none; outline: none;
    padding: 0 16px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #333;
    background: transparent;
  }
  .search-input::placeholder { color: #aaa; }

  .search-btn {
    height: 52px;
    padding: 0 24px;
    background: #ECA931;
    background: linear-gradient(45deg,rgba(236, 169, 49, 1) 0%, rgba(188, 82, 87, 1) 100%);
    border: none;
    font-size: 17px; font-weight: 400;
    color: #FFF;
    cursor: pointer;
    letter-spacing: 0.03em;
    white-space: nowrap;
    transition: background 0.2s;
    font-family: "Poppins", sans-serif;
    text-shadow: -1px 1px #000;
  }
  .search-btn:hover { 
    background: #ECA931;
    background: linear-gradient(45deg,rgba(188, 82, 87, 1) 0%, rgba(236, 169, 49, 1) 100%);
  }

  /* ─── SECTION COMMONS ─── */
  section { padding: 56px 40px; }

  .section-title {
    font-family: "Poppins", sans-serif;
    font-size: 33px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
}

  .section-sub {
    font-size: 19px; color: var(--muted);
    margin-top: 4px;
  }

  /* ─── COLLECTIONS ─── */
  .collections { background: var(--white); }

  .collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 32px;
  }

  .collection-card {}

  .collection-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px;
    gap: 4px;
    border-radius: var(--radius);
    overflow: hidden;
  }

  /* 3-block layout: first block spans both rows on the left */
  .collection-mosaic .img-block:first-child {
    grid-row: span 2;
  }

  .collection-mosaic .img-block {
    background: #e0ddd8;
    overflow: hidden;
    position: relative;
  }
  .collection-mosaic .img-block img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  .collection-card:hover .img-block img { transform: scale(1.06); }

  .col-info { margin-top: 14px; }

  .col-name {
    font-size: 19px; font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
  }

  .tags { display: flex; flex-wrap: wrap; gap: 6px; }

  .tag {
    font-size: 13px; font-weight: 400;
    color: #555;
    background: var(--tag-bg);
    border: 1px solid #e0e0e0;
    padding: 3px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
  }
  .tag:hover { background: var(--gold); color: #000; border-color: var(--gold); }

  /* Placeholder image colors for mosaic cells */
  .c1 { background: #c8b8a8; }
  .c2 { background: #a8b8c8; }
  .c3 { background: #b8a8c8; }
  .c4 { background: #c8c8a8; }
  .c5 { background: #d4b090; }
  .c6 { background: #90b4d4; }
  .c7 { background: #b490d4; }
  .c8 { background: #d4d490; }
  .c9 { background: #d49090; }
  .c10 { background: #90d4b4; }
  .c11 { background: #d4a090; }
  .c12 { background: #90a0d4; }

  /* ─── PHOTOSHOOT BANNER ─── */
  .photoshoot-banner {
    background: url(../images/booknow-banner.jpg) no-repeat top left;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 48px 56px;
  }

  .photoshoot-banner::before {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 45%;
    background: radial-gradient(ellipse at right, rgba(232,160,32,0.12) 0%, transparent 70%);
  }

  .camera-icon {
    position: absolute;
    right: 0px;
    top: 55%;
    transform: translateY(-50%);
    font-size: 120px;
    pointer-events: none;
    line-height: 1;
}
  .banner-content { position: relative; z-index: 2; max-width: 590px; margin-left: 10%;}

  .banner-content h2 {
    font-family: "Poppins", sans-serif;
    font-size: 33px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

  .banner-content p {
    color: #FFF;
    font-size: 19px;
    margin: 12px 0 24px;
    line-height: 1.65;
}

  .btn-book {
    display: inline-block;
    padding: 11px 28px;
    background: #FFF;
    border: 1.5px solid var(--white);
    color: #000;
    font-size: 20px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: 0.04em;
    font-family: "Poppins", sans-serif;
    transition: background 0.2s, color 0.2s;
}
  .btn-book:hover { background:#000;  color: var(--white); }

  /* ─── FRESH COLLECTIONS ─── */
  .fresh { background: var(--bg); }

  .fresh-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 8px;
    margin-top: 32px;
  }

  .fresh-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }

  .fresh-item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.35) 100%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .fresh-item:hover::after { opacity: 1; }
  .fresh-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
  .fresh-item:hover img { transform: scale(1.06); }

  .fresh-item .star-badge {
    position: absolute; top: 10px; right: 10px; z-index: 2;
    background: var(--gold);
    color: #000; font-size: 11px; font-weight: 700;
    width: 26px; height: 26px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }

  .fresh-item .lock-badge {
    position: absolute; top: 10px; right: 10px; z-index: 2;
    background: rgba(255,255,255,0.9);
    color: #333; font-size: 11px;
    width: 24px; height: 24px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }

  /* wide cells */
  .w2 { grid-column: span 2; }

  /* color placeholders for fresh grid */
  .f1  { background: linear-gradient(135deg, #8B7355, #C4A882); }
  .f2  { background: linear-gradient(135deg, #4a5568, #718096); }
  .f3  { background: linear-gradient(135deg, #2d6a4f, #40916c); }
  .f4  { background: linear-gradient(135deg, #9c3c00, #d4642a); }
  .f5  { background: linear-gradient(135deg, #6B4C2A, #A0784A); }
  .f6  { background: linear-gradient(135deg, #e2e8f0, #cbd5e0); }
  .f7  { background: linear-gradient(135deg, #4a5568, #2d3748); }
  .f8  { background: linear-gradient(135deg, #553c9a, #805ad5); }
  .f9  { background: linear-gradient(135deg, #1a365d, #2b6cb0); }
  .f10 { background: linear-gradient(135deg, #3a1a00, #6b3800); }
  .f11 { background: linear-gradient(135deg, #1c4532, #276749); }
  .f12 { background: linear-gradient(135deg, #C9A84C, #E6C97A); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--dark);
    color: #dfdfdf;
    font-size: 14px;
  }

  .footer-popular {
    padding: 20px 40px;
    border-bottom: 1px solid #222;
  }

  .footer-popular strong { color: #dfdfdf; }

  .footer-popular a {
    color: #dfdfdf; text-decoration: none;
    transition: color 0.15s;
  }
  .footer-popular a:hover { color: var(--gold); }

  .footer-links {
    display: flex; gap: 48px;
    padding: 24px 40px;
    border-bottom: 1px solid #222;
    flex-wrap: wrap;
  }

  .footer-col strong {
    display: block;
    color: #dfdfdf;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: capitalize;
    margin-bottom: 8px;
}

  .footer-col a {
    display: inline;
    color: #dfdfdf;
    text-decoration: none;
    font-size: 14px;
    margin-right: 12px;
    transition: color 0.15s;
}
  .footer-col a:hover { color: var(--gold); }

  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 40px;
    flex-wrap: wrap; gap: 12px;
  }

  .footer-bottom p {
    font-size: 14px;
    color: #dfdfdf;
}

  .social-links { display: flex; gap: 8px; }
  .social-links a {
    width: 34px; height: 34px;
    background: #636363;
    border: 1px solid #757575;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.18s;
  }
  .social-links a svg { width: 15px; height: 15px; display: block; }
  .social-links a:hover { transform: translateY(-2px); border-color: transparent; }

  /* Brand hover colours */
  .social-links a.social-fb:hover  { background: #1877F2; color: #fff; }
  .social-links a.social-tw:hover  { background: #000;    color: #fff; }
  .social-links a.social-ig:hover  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
  .social-links a.social-li:hover  { background: #0A66C2; color: #fff; }
  .social-links a.social-pi:hover  { background: #E60023; color: #fff; }
  .social-links a.social-yt:hover  { background: #FF0000; color: #fff; }

  .payment-icons { display: flex; gap: 8px; align-items: center; }
  .payment-icon {
    background: #222;
    color: #777;
    font-size: 10px; font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.04em;
  }

  /* ─── SLIDE DRAWER ─── */
  .drawer-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .drawer-overlay.open { opacity: 1; pointer-events: all; }

  .drawer {
    position: fixed; top: 0; left: 0; bottom: 0; z-index: 201;
    width: 320px;
    background: #111;
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column;
    overflow: hidden;
  }
  .drawer.open { transform: translateX(0); }

  .drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 24px;
    height: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
  }

  .drawer-title {
    font-family: "Poppins", sans-serif;
    font-size: 16px; font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
  }

  .drawer-close {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.07);
    border: none; border-radius: 50%;
    color: #aaa; font-size: 18px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
    font-family: inherit;
  }
  .drawer-close:hover { background: var(--gold); color: #000; }

  .drawer-search {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
  }
  .drawer-search input {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 9px 14px;
    color: var(--white);
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    outline: none;
    transition: border-color 0.2s;
  }
  .drawer-search input::placeholder { color: #555; }
  .drawer-search input:focus { border-color: var(--gold); }

  .drawer-body {
    flex: 1; overflow-y: auto;
    padding: 8px 0 24px;
  }
  .drawer-body::-webkit-scrollbar { width: 4px; }
  .drawer-body::-webkit-scrollbar-track { background: transparent; }
  .drawer-body::-webkit-scrollbar-thumb { background: #333; border-radius: 2px; }

  .drawer-section-label {
    padding: 16px 24px 6px;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f7a144;
  }

  .drawer-item-left { display: flex; align-items: center; gap: 12px; }

  .drawer-item-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .drawer-item-name {
    font-size: 14px; font-weight: 500;
    color: #ccc;
    transition: color 0.15s;
  }

  .drawer-item-count {
    font-size: 11px;
    color: #979797;
    font-weight: 400;
  }

  .drawer-divider {
    height: 1px;
    background: rgba(255,255,255,0.05);
    margin: 8px 24px;
  }

  .dot-family    { background: #c8a880; }
  .dot-beauty    { background: #d4829a; }
  .dot-culture   { background: #e0a030; }
  .dot-travel    { background: #70b8d4; }
  .dot-health    { background: #70d490; }
  .dot-rural     { background: #d47050; }
  .dot-business  { background: #8090d4; }
  .dot-food      { background: #d4c060; }
  .dot-fashion   { background: #c070c8; }
  .dot-nature    { background: #60b880; }
  .dot-festival  { background: #f07050; }
  .dot-education { background: #60a8d4; }

  /* ─── SUBCATEGORY ACCORDION ─── */
  .drawer-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 11px 24px;
    cursor: pointer;
    transition: background 0.15s;
    user-select: none;
  }
  .drawer-item:hover { background: rgba(255,255,255,0.05); }
  .drawer-item.active { background: rgba(232,160,32,0.08); }
  .drawer-item.active .drawer-item-name { color: var(--gold); }
  .drawer-item:hover .drawer-item-name { color: var(--gold); }

  .drawer-item-chevron {
    font-size: 10px; color: #444;
    transition: transform 0.28s ease, color 0.15s;
    display: inline-block;
  }
  .drawer-item.active .drawer-item-chevron { transform: rotate(90deg); color: var(--gold); }

  .subcategory-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
    background: rgba(255,255,255,0.02);
    border-left: 2px solid rgba(232,160,32,0.25);
    margin: 0 24px;
    border-radius: 0 0 6px 6px;
  }
  .subcategory-panel.open { max-height: 600px; }

  .subcategory-inner { padding: 8px 0 4px; }

  .sub-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 7px 16px;
    cursor: pointer;
    transition: background 0.12s;
    border-radius: 4px;
    margin: 0 6px;
  }
  .sub-item:hover { background: rgba(255,255,255,0.05); }
  .sub-item:hover .sub-name { color: var(--gold-light); }

  .sub-name {
    font-size: 13px; font-weight: 400;
    color: #888;
    transition: color 0.15s;
  }

  .sub-count {
    font-size: 11px; color: #3a3a3a;
  }

  .view-all-link {
    display: flex; align-items: center; gap: 6px;
    margin: 10px 16px 6px;
    padding: 8px 12px;
    border: 1px solid rgba(232,160,32,0.3);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    text-decoration: none;
  }
  .view-all-link:hover { background: rgba(232,160,32,0.1); border-color: var(--gold); }
  .view-all-link span {
    font-size: 12px; font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.04em;
  }
  .view-all-link .arrow { font-size: 13px; color: var(--gold); }

  /* ─── ANIMATIONS ─── */

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-content { animation: fadeUp 0.7s ease both; }
  .hero h1 { animation: fadeUp 0.7s 0.1s ease both; }
  .hero-sub { animation: fadeUp 0.7s 0.2s ease both; }
  .search-bar-box { animation: fadeUp 0.7s 0.3s ease both; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .collections-grid { grid-template-columns: 1fr 1fr; }
    .fresh-grid { grid-template-columns: repeat(2, 1fr); }
    .w2 { grid-column: span 1; }
  }

  @media (max-width: 600px) {
    nav { padding: 0 16px; }
    section { padding: 40px 16px; }
    .collections-grid { grid-template-columns: 1fr; }
    .fresh-grid { grid-template-columns: 1fr 1fr; }
    .footer-links { gap: 24px; }
    .footer-popular, .footer-bottom { padding: 16px; }
    .photoshoot-banner { padding: 40px 24px; }
  }