body {

.collection-overlay {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100vw;
    height: 363px;
    background: rgba(255,255,255,0.97);
    display: none;
    justify-content: center;
    align-items: flex-start;
    z-index: 1100;
    margin: 0;
    padding: 0;
}

.navbar-center a[href="/collections"]:hover ~ .collection-overlay,
.navbar-center a[href="/collections"]:focus ~ .collection-overlay {
    display: flex;
}

.collection-overlay.active {
    display: flex;
}
.collection-cards {
    display: flex;
    gap: 64px;
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 40px;
}
.collection-card {
    background: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 220px;
}
.collection-card img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    margin-bottom: 18px;
}
.collection-label {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    color: #222;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
}
.collection-label .arrow {
    font-size: 18px;
    margin-left: 8px;
    display: inline-block;
    transform: translateY(-2px);
}

    margin: 0;
    font-family: 'Urbanist', sans-serif;

    /* Modern scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #000 #f5f5f5;

    padding-top: 80px;
}

/* WebKit scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #333;
}

::-webkit-scrollbar-corner {
    background: #f5f5f5;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background-color: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1200;
}

.navbar-left, .navbar-center, .navbar-right {
    flex: 1 0 0%;
    display: flex;
    align-items: center;
}

.navbar-left {
    justify-content: flex-start;
}

.navbar-center {
    justify-content: center;
    gap: 16px;
}

.navbar-right {
    justify-content: flex-end;
    gap: 12px;
}

.logo {
    height: 32px;
    width: 215px;
}

.navbar-center a {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 4px 0;
    font-family: 'Urbanist', sans-serif;
}

.icon {
    width: 24px;
    height: 24px;
}

.icon-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.toggle-button {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.toggle-button span {
    background: #000000;
    border-radius: 2px;
    height: 3px;
    margin: 4px 0;
    width: 25px;
}
.hero-section {
    position: relative;
    height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.hero-text {
    position: relative;
    color: #FFFFFF;
    font-family: 'Urbanist', sans-serif;
    font-weight: 300; /* Light */
    font-size: 36px;
    text-align: center;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    width: 787px;
    z-index: 1;
}

.hero-vector {
    position: absolute;
    bottom: -70px; /* Adjusted for visual alignment */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 215px;
    z-index: 1;
}

.hero-vector img {
    width: 100%;
    height: auto;
}

.crafted-section {
    padding: 0 20px;
    text-align: center;
    background-color: #FFFFFF;
}

.crafted-title {
    font-family: 'Italiana', sans-serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.separator {
    width: 60px;
    border: 0.5px solid #000000;
    margin: 30px auto;
}

.crafted-subtitle {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

.crafted-text {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.font-italiana {
    font-family: 'Italiana', sans-serif;
}

@media (max-width: 768px) {
    .navbar-center {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 80px;
        left: 0;
        background-color: #FFFFFF;
    }

    .navbar-center.active {
        display: flex;
    }

    .navbar {
        padding: 20px;
    }

    .toggle-button {
        display: flex;
    }
}

.frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 60px 80px;
  position: relative;
}

.frame .div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame .an-ode-to-elegance {
  position: relative;
  align-self: stretch;
  height: 38px;
  margin-top: -1.00px;
  font-family: 'Italiana', sans-serif;
  font-weight: 400;
  color: #000000;
  font-size: 32px;
  text-align: center;
  letter-spacing: 1.28px;
  line-height: normal;
  white-space: nowrap;
}

.frame .three-worlds-of {
  position: relative;
  width: fit-content;
  font-family: 'Urbanist', sans-serif;
  font-weight: 400;
  color: #000000;
  font-size: 16px;
  letter-spacing: 0.64px;
  line-height: normal;
  white-space: nowrap;
}

.frame .div-2 {
  gap: 20px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

.frame .div-3 {
  flex-direction: column;
  gap: 24px;
  flex: 1;
  flex-grow: 1;
  display: flex;
  align-items: center;
  position: relative;
}

.frame .rectangle {
  position: relative;
  align-self: stretch;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.frame .div-4 {
  flex-direction: column;
  gap: 12px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

.frame .text-wrapper {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0.96px;
  line-height: normal;
}

.frame .text-wrapper-2 {
  position: relative;
  align-self: stretch;
  font-family: 'Urbanist', sans-serif;
  font-weight: 300;
  color: #000000;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.64px;
  line-height: normal;
}

.frame .text-wrapper-3 {
  position: relative;
  align-self: stretch;
  font-family: 'Urbanist', sans-serif;
  font-weight: 300;
  color: #000000;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.80px;
  line-height: normal;
}

.fragrance-section {
    background-color: #000;
    color: #fff;
    padding: 80px;
    display: flex;
    gap: 40px;
}

.fragrance-nav {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tabs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab-link {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: block;
    font-family: 'Urbanist', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 15px 0;
    text-align: left;
    width: 100%;
    border-bottom: 1px solid #333;
}

.tab-link.active {
    color: #fff;
    border-bottom: 1px solid #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-description {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    margin-top: 20px;
}

.explore-all {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    text-decoration: underline;
}

.fragrance-display {
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fragrance-cards-container {
    width: 100%;
    overflow: hidden;
}

.fragrance-card-slider {
    display: none;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.fragrance-card-slider.active {
    display: flex;
}

.fragrance-card {
    background-color: #111;
    padding: 20px;
    width: calc((100% / 3) - (40px / 3));
    flex-shrink: 0;
    position: relative;
    box-sizing: border-box;
}

.fragrance-card img {
    width: 100%;
    height: auto;
}

.bestseller-tag {
    background-color: #fff;
    color: #000;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.fragrance-name {
    font-family: 'Urbanist', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0 10px;
}

.collection-name {
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #aaa;
    margin-bottom: 10px;
}

.fragrance-description {
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 10px;
}

.fragrance-price {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.nav-arrows {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
}

.arrow-button {
    background-color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-button img {
    width: 20px;
    height: 20px;
}

.navbar-right { position: relative; }

.wishlist-hover-group { position: relative; }
.wishlist-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    width: 320px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    z-index: 1000;
    padding: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.wishlist-hover-group:hover .wishlist-dropdown,
.wishlist-hover-group:focus-within .wishlist-dropdown,
.wishlist-dropdown:hover,
.wishlist-dropdown:focus-within {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.wishlist-title {
    padding: 16px 20px 8px 20px;
    font-size: 18px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    color: #000;
    border-bottom: 1px solid #eee;
}
.wishlist-empty {
    padding: 20px;
    text-align: center;
    color: #888;
    font-family: 'Urbanist', sans-serif;
    font-size: 15px;
}

.bag-hover-group { position: relative; }
.bag-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    width: 320px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    z-index: 1000;
    padding: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.bag-hover-group:hover .bag-dropdown,
.bag-hover-group:focus-within .bag-dropdown,
.bag-dropdown:hover,
.bag-dropdown:focus-within {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.bag-title {
    padding: 16px 20px 8px 20px;
    font-size: 18px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    color: #000;
    border-bottom: 1px solid #eee;
}
.bag-empty {
    padding: 20px;
    text-align: center;
    color: #888;
    font-family: 'Urbanist', sans-serif;
    font-size: 15px;
}

.art-meets-fragrance-section {
    display: flex;
    max-height: 70vh;
    overflow: hidden;
}

.art-column {
    flex: 1;
    overflow: hidden;
    background-color: #fff;
}

.art-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-column {
    flex: 1;
    position: relative;
    background-image: url('images/art-fragrance-2.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 10% 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.content-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.content-column h2 {
    font-family: 'Italiana', sans-serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.content-column p {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 30px;
}

.content-column .read-more-link {
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    text-decoration: underline;
    align-self: flex-start;
}

.instagram-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instagram-gallery {
    display: flex;
    gap: 20px;
    width: 100%;
    padding: 0 80px;
    box-sizing: border-box;
}

.gallery-image {
    flex: 1;
    height: 427px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 60px 80px;
    text-align: center;
}

.instagram-icon-wrapper {
    background-color: #000;
    padding: 12px;
}

.whatsapp-icon-wrapper {
    background-color: #000;
    padding: 12px;
    display: flex;
    align-items: center;
}

.instagram-icon {
    width: 32px;
    height: 32px;
}

.instagram-divider {
    width: 103px;
    height: 1px;
    background-color: #000;
}

.instagram-title {
    font-family: 'Italiana', sans-serif;
    font-size: 32px;
    letter-spacing: 1.28px;
    margin: 0;
}

.instagram-subtitle {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    letter-spacing: 0.64px;
    max-width: 724px;
    margin: 0;
}

.indulge-section {
    padding: 100px 20px;
    text-align: center;
    background-color: #fff;
}

.indulge-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 1.28px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.shop-now-link {
    display: inline-block;
    font-family: 'Urbanist', sans-serif;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px solid #000;
}

.profile-section {
    padding: 160px 0 60px 0;
    min-height: 70vh;
    display: flex;
    justify-content: center;
}

.profile-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.profile-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-sidebar {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    height: fit-content;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.profile-avatar {
    width: 100px;
    height: 100px;
    background: #f5f5f5;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-avatar img {
    width: 50px;
    height: 50px;
}

.profile-info {
    text-align: center;
    margin-bottom: 30px;
}

.profile-info h3 {
    font-size: 18px;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.profile-info p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.profile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-nav li {
    margin-bottom: 5px;
}

.profile-nav a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.profile-nav a:hover,
.profile-nav a.active {
    background: #f5f5f5;
    color: #000;
}

.profile-content {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.profile-content h2 {
    margin: 0 0 30px 0;
    font-size: 24px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
}

.profile-btn {
    background: #000;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.profile-btn:hover {
    background: #333;
}

.alert {
    padding: 15px 20px;
    border-radius: 6px;
    margin: 0 auto 20px auto;
    text-align: center;
    max-width: 600px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

:root {
    --black: #000000;
    --white: #ffffff;
}