/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #7A0C0C;
    --secondary: #D4AF37;
    --accent: #F4D27A;
    --dark: #0B0B0B;
    --ivory: #FAF7F0;
    --text: #242424;
    --white: #FFFDF8;
    --gold-muted: #A67C24;
}

html {
    scroll-behavior: smooth;
    font-size: 1vw;
    /* Base font-size strictly in vw */
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--ivory);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.subtitle {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}























/* Typography Scale (Strictly vw) */
.subtitle {
    font-size: 1.0vw;
    letter-spacing: 0.1vw;
    text-transform: uppercase;
    color: var(--secondary);
    display: block;
    margin-bottom: 1.2vw;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

h2 {
    font-size: 4.8vw;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 1.8vw;
}

h3 {
    font-size: 1.8vw;
}

h4 {
    font-size: 1.5vw;
}

p {
    font-size: 1.2vw;
    color: var(--text);
    margin-bottom: 2vw;
}



/* Buttons */
.btn-primary,
.btn-secondary,
.btn-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5vw;
    padding: 1vw 2vw;
    font-size: 0.9vw;
    text-transform: uppercase;
    letter-spacing: 0.1vw;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    border-radius: 0.2vw;
}

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

.btn-primary:hover {
    background-color: #5a0909;
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--dark);
    font-weight: 500;
    padding: 0.8vw 2vw;
    font-size: 0.8vw;
    width: 100%;
    justify-content: center;
}

.btn-secondary:hover {
    background-color: var(--gold-muted);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    background-color: var(--ivory);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary);
    color: var(--accent);
    padding: 0.8vw 5vw;
    font-size: 0.8vw;
    letter-spacing: 0.05vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.top-bar-left span {
    margin-right: 1vw;
    display: flex;
    align-items: center;
}

.top-bar-right {
    display: flex;
    gap: 2vw;
}

.top-bar-right span {
    display: flex;
    align-items: center;
    gap: 0.5vw;
    color: var(--ivory);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5vw 5vw;
    /* Reduced top/bottom padding to make it slimmer */
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    width: 7vw;
    /* Made logo smaller to reduce header height */
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 2.5vw;
}

.nav-links a {
    font-size: 0.9vw;
    text-transform: uppercase;
    letter-spacing: 0.05vw;
    font-weight: 500;
    color: var(--text);
    transition: color 0.3s;
}

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

.nav-icons {
    display: flex;
    gap: 1.5vw;
}

.nav-icons .icon {
    width: 1.5vw;
    height: 1.5vw;
    color: var(--text);
    cursor: pointer;
    transition: color 0.3s;
}

.nav-icons .icon:hover {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    background-color: var(--ivory);
    height: 35vw;
    /* Reduced height from 40vw to make it sleeker */
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding: 5vw 5vw;
    position: relative;
    z-index: 3;
    max-width: 60%;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    /* Reduced width to prevent heavy wide cropping */
    height: 100%;
    z-index: 1;
}

.hero-image img {
    object-fit: cover;
    object-position: right center;
    /* Ensure the main part of the image is viewed perfectly */
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--ivory) 0%, transparent 60%);
    z-index: 2;
}

.hero-features {
    display: flex;
    gap: 2vw;
    margin-top: 3vw;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.8vw;
    font-size: 1vw;
    /* Increased text size */
    color: var(--text);
}

.hero-feature svg {
    width: 2.2vw;
    /* Increased icon size */
    height: 2.2vw;
    color: var(--secondary);
}

/* Trust Banner */
.trust-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4vw;
    background-color: var(--ivory);
    color: var(--text);
    padding: 3vw 0;
    margin: 0;
    position: relative;
    z-index: 10;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.trust-icon {
    display: flex;
    align-items: center;
}

.trust-icon svg {
    width: 2.5vw;
    height: 2.5vw;
    color: var(--gold-muted);
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 1.1vw;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.trust-text span {
    font-size: 0.85vw;
    color: var(--text);
    opacity: 0.7;
}

.trust-divider {
    width: 1px;
    height: 3vw;
    background-color: rgba(0, 0, 0, 0.1);
}

/* Generic Section styling */
section {
    padding: 3vw 5vw;
}

.section-header {
    text-align: center;
    margin-bottom: 4vw;
}

/* Categories Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2vw;
}

.category-card {
    background-color: var(--bg-white);
    padding: 1vw;
    text-align: center;
    border: 0.1vw solid transparent;
    transition: border-color 0.3s;
}

.category-card:hover {
    border-color: var(--secondary-color);
}

.card-img-wrapper {
    width: 100%;
    height: 25vw;
    margin-bottom: 1vw;
    overflow: hidden;
}

.card-img-wrapper img {
    transition: transform 0.5s ease;
}

.category-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-info h3 {
    margin-bottom: 0.5vw;
    color: var(--primary-color);
}

.card-info span {
    font-size: 0.8vw;
    color: var(--text-light);
    text-transform: uppercase;
}

/* Bestsellers Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2vw;
}

.product-card {
    background-color: var(--bg-white);
    border: 0.1vw solid var(--border-color);
    padding: 1vw;
    position: relative;
}

.product-img {
    position: relative;
    width: 100%;
    height: 25vw;
    margin-bottom: 1vw;
}

.wishlist-btn {
    position: absolute;
    top: 1vw;
    right: 1vw;
    background: var(--bg-white);
    border: none;
    border-radius: 50%;
    width: 2.5vw;
    height: 2.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0.2vw 0.5vw rgba(0, 0, 0, 0.1);
    color: var(--text-light);
}

.wishlist-btn svg {
    width: 1.2vw;
    height: 1.2vw;
}

.product-info {
    text-align: center;
}

.product-info h4 {
    margin-bottom: 0.5vw;
}

.price {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1vw;
    font-size: 1.1vw;
}

/* Promo Banner */
.promo-banner {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0;
    /* Handled by flex */
    height: 30vw;
    margin: 0 5vw;
    /* Inset slightly */
    position: relative;
    overflow: hidden;
}

.promo-content {
    flex: 1;
    padding: 5vw;
    z-index: 2;
}

.promo-content h2 {
    color: var(--bg-white);
}

.promo-content p {
    color: #e0d0d3;
}

.promo-image {
    flex: 1;
    height: 100%;
    position: relative;
}

.promo-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-color) 0%, transparent 100%);
}

.promo-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.promo-badge .circle {
    width: 10vw;
    height: 10vw;
    border: 0.1vw dashed var(--secondary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.9);
    /* Black with opacity */
}

.promo-badge span {
    font-size: 2.5vw;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.promo-badge small {
    font-size: 1vw;
    color: var(--secondary-color);
}

/* Instagram Feed */
.instagram-feed {
    background-color: var(--bg-white);
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1vw;
}

.insta-grid img {
    height: 25vw;
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 5vw;
    background-color: var(--white);
    padding: 4vw;
    border: 0.1vw solid var(--border-color);
    border-radius: 1vw;
}

.about-content {
    flex: 1;
}

.about-content p {
    margin-bottom: 1.5vw;
    color: var(--text-light);
}

.about-content strong {
    color: var(--primary);
    font-weight: 500;
}

.about-quote {
    margin-top: 3vw;
    font-size: 1.2vw;
    color: var(--secondary);
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.about-image {
    flex: 1;
    height: 35vw;
    border-radius: 1vw;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1vw;
}

/* Our Collection Section */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3vw;
    margin-top: 4vw;
}

.collection-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    border-radius: 0.5vw;
    box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.05);
}

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

.collection-item:hover img {
    transform: scale(1.05);
}

/* Connect Us Section */
.connect-container {
    display: flex;
    align-items: stretch;
    gap: 4vw;
    background-color: var(--white);
    padding: 4vw;
    border-radius: 1vw;
    margin-bottom: 4vw;
}

.connect-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.connect-content h2 {
    margin-bottom: 2vw;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5vw;
}

.contact-item svg {
    width: 2.5vw;
    height: 2.5vw;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item strong {
    font-size: 1.2vw;
    color: var(--dark);
    display: block;
    margin-bottom: 0.5vw;
}

.contact-item p {
    margin: 0;
    font-size: 1vw;
    color: var(--text);
    line-height: 1.5;
}

.connect-map {
    flex: 1;
    border-radius: 0.8vw;
    overflow: hidden;
    min-height: 25vw;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0d0a0a 0%, #1f1814 100%);
    color: var(--ivory);
    padding: 3vw 5vw 1.5vw;
    border-top: 0.2vw solid var(--secondary);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -15vw;
    right: -10vw;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1.5fr 1.5fr;
    gap: 3vw;
    margin-bottom: 2vw;
    position: relative;
    z-index: 2;
}

.footer-brand .logo {
    width: 9vw;
}

.footer-brand p {
    margin-top: 1vw;
    color: var(--ivory);
    opacity: 0.8;
    font-size: 1vw;
    line-height: 1.6;
}

.social-icons {
    margin-top: 1.5vw !important;
}

.social-icons a:hover {
    transform: translateY(-0.3vw);
}

.footer-links h4, .footer-contact h4, .footer-newsletter h4 {
    color: var(--secondary);
    margin-bottom: 1.2vw;
    font-size: 1.1vw;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1vw;
    font-family: 'Outfit', sans-serif;
}

.footer-links ul li {
    margin-bottom: 0.8vw;
}

.footer-links ul a, .footer-contact p a {
    font-size: 1vw;
    color: var(--ivory);
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul a:hover, .footer-contact p a:hover {
    color: var(--secondary);
    opacity: 1;
    transform: translateX(0.4vw);
}

.footer-contact p {
    margin-bottom: 1vw;
    color: var(--ivory);
    font-size: 1vw;
    line-height: 1.6;
}

.footer-newsletter p {
    color: var(--ivory);
    opacity: 0.8;
    margin-bottom: 1.2vw;
    font-size: 1vw;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    margin-top: 0.5vw;
    border-bottom: 0.15vw solid rgba(212, 175, 55, 0.5);
    padding-bottom: 0.5vw;
    transition: border-color 0.3s;
}

.newsletter-form:focus-within {
    border-color: var(--secondary);
}

.newsletter-form input {
    flex: 1;
    padding: 0.4vw 0;
    border: none;
    background: transparent;
    color: var(--ivory);
    font-size: 1vw;
    font-family: inherit;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
   background-color: transparent;
   color: var(--secondary);
   border: none;
   padding: 0 0.5vw;
   cursor: pointer;
   font-size: 1.5vw;
   transition: transform 0.3s;
}

.newsletter-form button:hover {
   transform: translateX(0.6vw);
   background-color: transparent;
}

.footer-bottom {
   text-align: center;
   border-top: 1px solid rgba(255, 255, 255, 0.05);
   padding-top: 1.5vw;
   position: relative;
   z-index: 2;
}

.footer-bottom p {
   margin: 0;
   font-size: 0.9vw;
   color: var(--ivory);
   opacity: 0.6;
   letter-spacing: 0.05vw;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8vw;
    margin-bottom: 1.2vw;
}

.footer-contact-item svg {
    width: 1.4vw;
    height: 1.4vw;
    min-width: 1.4vw;
    color: var(--secondary);
    margin-top: 0.2vw;
}

.footer-contact-item div {
    display: flex;
    flex-direction: column;
}

.footer-contact-item span {
    color: var(--secondary);
    font-size: 0.85vw;
    margin-bottom: 0.2vw;
    text-transform: uppercase;
    letter-spacing: 0.05vw;
}

.footer-contact-item a {
    font-size: 0.9vw;
    color: var(--ivory);
    opacity: 0.8;
    line-height: 1.6;
}

.footer-contact-item a:hover {
    color: var(--secondary);
    opacity: 1;
}


/* Fourth Footer Column */
.footer-store {
    position: relative;
}

.footer-store h4 {
    color: var(--secondary);
    margin-bottom: 1.2vw;
    font-size: 1.1vw;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1vw;
    font-family: 'Outfit', sans-serif;
}

.store-tagline {
    font-size: 0.9vw;
    color: var(--ivory);
    opacity: 0.75;
    line-height: 1.6;
    margin-bottom: 1.5vw;
}

.store-hours {
    border-left: 0.1vw solid var(--secondary);
    padding-left: 1vw;
    margin-bottom: 1.5vw;
}

.store-hours span {
    display: block;
    color: var(--secondary);
    font-size: 0.8vw;
    text-transform: uppercase;
    letter-spacing: 0.08vw;
    margin-bottom: 0.3vw;
}

.store-hours p {
    margin: 0;
    font-size: 0.85vw;
    color: var(--ivory);
    opacity: 0.7;
}

.store-hours strong {
    font-size: 0.9vw;
    color: var(--ivory);
    font-weight: 500;
}

.footer-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8vw;
    padding: 0.7vw 1.2vw;
    border: 0.1vw solid rgba(212, 175, 55, 0.6);
    color: var(--secondary) !important;
    font-size: 0.8vw !important;
    text-transform: uppercase;
    letter-spacing: 0.05vw;
    transition: all 0.3s ease;
}

.footer-map-btn span {
    font-size: 1vw;
    transition: transform 0.3s ease;
}

.footer-map-btn:hover {
    background-color: var(--secondary);
    color: var(--dark) !important;
    transform: translateY(-0.2vw);
}

.footer-map-btn:hover span {
    transform: translateX(0.3vw);
}




/* Scroll Animations */
.animate {
    opacity: 0;
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate.fade-up {
    transform: translateY(4vw);
}

.animate.fade-left {
    transform: translateX(4vw);
}

.animate.fade-right {
    transform: translateX(-4vw);
}

.animate.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2vw;
    right: 2vw;
    width: 3.5vw;
    height: 3.5vw;
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(2vw);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@keyframes bounceUp {
    0% { transform: translateY(0); }
    50% { transform: translateY(-0.5vw); }
    100% { transform: translateY(0); }
}

.back-to-top.clicked svg {
    animation: bounceUp 0.4s ease-out;
}

.back-to-top svg {
    width: 1.8vw;
    height: 1.8vw;
}
