:root {
    --gold-primary: #D4AF37;
    --text-dark: #374151;
    --gold: #D4AF37;
    --gold-hover: #C5A880;
    --bg-section: #F5EFE6;
    --text-grey: #4b5563;
    --dark: #111;
    --light-bg: #F5EFE6;
    --card-bg: rgba(255, 255, 255, 0.05);
    --white: #FFF;
}

body,
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    font-family: "Playfair Display", serif;
    margin-bottom: 0.5rem;
    line-height: 1;
    color: var(--dark);
}

h1 {
    font-size: 72px;
}

h2 {
    font-size: 48px; color: var(--gold-primary) !important;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

p { 
        font-size: 14px;
    color: var(--text-white); 
}

.custom-navbar {
    background-color: var(--white);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.brand-logo {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 1.5px; 
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 0!important;
    padding-right: 0!important;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #d4af37;
    transition: width 0.4s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold-primary) !important;
}

.nav-icon-btn {
    background: var(--bg-section);
    backdrop-filter: blur(8px);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    color: var(--text-dark);
    border: none;
    padding: 8px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-icon-btn:hover {
    color: var(--gold-primary);
    background: var(--bg-section);
    backdrop-filter: blur(8px);
}

.badge-cart {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--gold-primary);
    color: white;
    font-size: 10px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        border-top: 1px solid #eee;
        margin-top: 1rem;
        padding-top: 1rem;
    }
}

.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

.gold-text {
    color: var(--gold);
}

.tracking-widest {
    letter-spacing: 0.2em;
}

.hero-title span {
    font-size: 48px;
}

.hero-desc {
    color: #e5e7eb;
    max-width: 576px;
    font-weight: 500;
    font-size: 20px;
}

.btn-gold {
    background-color: var(--gold);
    color: white;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    color: white;
    transform: translateY(-3px);
}

.btn-outline-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

@media (max-width: 768px) {
    .display-1 {
        font-size: 3.5rem;
    }

    .display-4 {
        font-size: 1.8rem;
    }
}

.collections-section {
    background-color: var(--bg-section);
}

.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.5s ease;
    aspect-ratio: 3 / 4;
}

.collection-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-image-wrapper {
    width: 100%;
    height: 100%;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.collection-card:hover .card-image-wrapper img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.collection-card:hover .card-overlay {
    opacity: 0.9;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 20px 15px 15px 15px;
    color: var(--text_white);
    border-radius: 0 0 10px 10px;
    z-index: 3;
    transition: background 0.3s ease;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.view-link {
    color: var(--gold);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collection-card:hover .view-link {
    opacity: 1;
}

.view-link i {
    transition: transform 0.3s ease;
}

.collection-card:hover .view-link i {
    transform: translateX(4px);
}

.product-card {
    background-color: var(--light-bg);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.product-img-box {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-box img {
    transform: scale(1.1);
}

.product-actions {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.action-btn {
    background: white;
    color: var(--dark);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.action-btn:hover {
    background-color: var(--gold);
    color: white;
}

.product-card:hover .action-btn {
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.075s;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    margin-bottom: 0.5rem;
}

.product-price {
    font-family: serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.btn-add-cart {
    width: 100%;
    background-color: var(--dark);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 50px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-add-cart:hover {
    background-color: var(--gold);
}

.why-choose-us {
    background-color: var(--dark);
    background: url('../images/home-back.jpg') no-repeat center;
    color: white;
    background-attachment: fixed;
    background-size: 100%;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    border-color: var(--gold);
    transform: scale(1.05);
}

.feature-card h5 {
    color: var(--white);
}

.icon-box {
    width: 64px;
    height: 64px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
    background-color: var(--gold);
    color: white;
}

.feature-card p {
    font-size: 16px;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #e0e0e0 !important;
}

.text-light-emphasis {
    color: #adb5bd !important;
}

.occasion-section {
    background-color: var(--bg-section);
}

.occasion-card {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    margin-bottom: 20px;
}

.occasion-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.occasion-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
}

.occasion-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
}

.occasion-content p {
    font-size: 16px;
    margin-bottom: 16px;
}

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

.explore-link i {
    transition: transform 0.3s ease;
}

.occasion-card:hover .explore-link {
    gap: 1rem;
}

.occasion-card:hover .explore-link i {
    transform: translateX(4px);
}

/* Card Styling */
.showcase-card {
    position: relative;
    aspect-ratio: 12 / 16;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.showcase-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.grid-hover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: 0.3s ease;
    background-color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 40%;
    text-align: center;
    margin: 0 auto;
}

.grid-hover svg {    
    font-size: 18px;
}

.hover-title {
    font-size: 0.9rem;
    font-weight: 500;
    transform: translateY(30px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.showcase-card:hover .grid-hover {
    opacity: 1;
}

.showcase-card:hover .hover-title {
    transform: translateY(0);
    opacity: 1;
}

.insta-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.insta-close-btn {
    position: fixed;
    top: 20px;
    right: 30px;
    color: var(--white);
    border: none;
    font-size: 20px;
    cursor: pointer;
    z-index: 10001;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.insta-container.video-only {
    width: 95%;
    max-width: 400px;
    height: 85vh;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.video-side,
.video-side video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay-btns {
    position: absolute;
    bottom: 30px;
    left: 20px;
    display: flex;
    gap: 15px;
}

.video-overlay-btns button {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.video-hover-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
    opacity: 0;
    transition: 0.3s ease;
}

.showcase-card:hover .video-hover-title {
    transform: translateY(-20px);
    opacity: 1;
}
.hover-title {
    font-size: 16px;
}

@media (max-width: 768px) {
    .insta-container.video-only {
        height: 75vh;
    }

    .nav-btn {
        display: none;
    }

}

.newsletter-section {
    background: var(--dark);
    min-height: 400px;
}

.newsletter-card {
    max-width: 900px;
}

.newsletter-block p {
    color: rgba(255, 255, 255, 0.5);
}

.icon-glass-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.input-group-custom {
    position: relative;
}

.mail-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    z-index: 10;
}

.input-group-custom input:focus {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3) !important;
}

.newsletter-form {
    max-width: 500px;
}

.btn-white {
    background-color: white;
    color: var(--gold);
    border: none;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: #f8f9fa;
    color: #b3932d;
    transform: translateY(-2px);
}

@media (max-width: 575.98px) {
    .newsletter-card {
        border-radius: 1.5rem;
        padding: 2.5rem 1.5rem !important;
    }
}

.footer-section {
    background-color: var(--dark);
    color: white;
    font-size: 14px;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.5rem;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.125rem;
}

.text-secondary-emphasis {
    color: #9ca3af !important;
    line-height: 1.6;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    background-color: var(--gold);
    color: white;
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact i {
    color: var(--gold);
    font-size: 1rem;
}

.footer-contact a {
    color: #FFF;
    text-decoration: none;
}

.trust-bar {
    background-color: var(--trust-bg);
}

.trust-bar span {
    letter-spacing: 0.5px;
    font-weight: 500;
}

.border-secondary-subtle {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.fa-heart {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

 @media only screen and (min-width:320px) and (max-width:767px) {
    .hero-bg img { 
        height: auto; 
    }
    h1 {
        font-size: 30px;
    }
    .hero-title span {
        font-size: 18px;
    }
    .hero-desc { 
        font-weight: 300;
        font-size: 11px;margin-bottom: 10px !important;max-width: 200px;
    }
    h1.mb-4 { 
        margin-bottom: 10px !important;
    }
    .hero-section { 
        height: auto; 
    }
    .mt-5 {
        margin-top: 15px!important;
    }
    .prm-coll {
        display: none!important;
    }
    .btn-gold { 
        padding: 4px 10px!important;
        font-size: 14px; margin-bottom: 10px;
    }
    .btn-outline-glass { 
        padding: 4px 10px!important;
        font-size: 14px;margin-bottom: 10px;
    }
    .why-choose-us { 
        background-size: cover;
    }
    h2 {
        font-size: 32px; 
    }
    .fixed-top {
        position: inherit;
    }
}