:root {
    --gold: #C9952A;
    --gold-light: #E8B84B;
    --gold-pale: #F5E6C8;
    --deep: #1A0A00;
    --maroon: #7B1F1F;
    --cream: #FAF6EF;
    --silk: #F0E6D3;
    --text: #2C1810;
    --text-light: #6B4C3B;
    --white: #FFFFFF;
    --shadow-gold: 0 8px 32px rgba(201, 149, 42, 0.18);
    --shadow-deep: 0 12px 48px rgba(26, 10, 0, 0.22);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(26, 10, 0, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 149, 42, 0.25);
    transition: all 0.4s ease;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 72px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
}

.nav-logo span:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 2px;
}

.nav-logo span:last-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.7rem;
    color: rgba(232, 184, 75, 0.6);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.82rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(250, 246, 239, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    cursor: pointer;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

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

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-admin {
    background: linear-gradient(135deg, var(--gold), #A07020);
    color: var(--deep) !important;
    padding: 8px 20px;
    border-radius: 2px;
    font-weight: 600 !important;
}

.nav-admin:hover {
    color: var(--deep) !important;
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 149, 42, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.search-box input {
    background: transparent;
    border: none;
    outline: none;
    padding: 8px 14px;
    color: var(--cream);
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    width: 180px;
}

.search-box input::placeholder {
    color: rgba(250, 246, 239, 0.35);
}

.search-box button {
    background: var(--gold);
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    color: var(--deep);
    font-size: 1rem;
    transition: background 0.3s;
}

.search-box button:hover {
    background: var(--gold-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    display: block;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--deep);
    padding: 20px 40px;
    border-bottom: 1px solid rgba(201, 149, 42, 0.2);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(250, 246, 239, 0.7);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(201, 149, 42, 0.1);
    cursor: pointer;
}

/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(26, 10, 0, 0.72) 0%, rgba(123, 31, 31, 0.35) 50%, rgba(26, 10, 0, 0.55) 100%);
}

.slide-content {
    position: absolute;
    bottom: 18%;
    left: 8%;
    max-width: 620px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.9s ease 0.4s;
}

.hero-slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-tag {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.slide-tag::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--gold-light);
}

.slide-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 18px;
}

.slide-content h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.slide-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(250, 246, 239, 0.8);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #A07020);
    color: var(--deep);
    padding: 14px 36px;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 149, 42, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    padding: 14px 36px;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 1px solid rgba(250, 246, 239, 0.4);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(232, 184, 75, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.hero-dot.active {
    background: var(--gold-light);
    width: 28px;
    border-radius: 3px;
}

.hero-arrows {
    position: absolute;
    bottom: 35px;
    right: 60px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(232, 184, 75, 0.4);
    background: rgba(26, 10, 0, 0.4);
    color: var(--gold-light);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.hero-arrow:hover {
    background: var(--gold);
    color: var(--deep);
    border-color: var(--gold);
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
    background: linear-gradient(90deg, var(--gold) 0%, #A07020 50%, var(--gold) 100%);
    padding: 12px 0;
    overflow: hidden;
}

.marquee-inner {
    display: flex;
    gap: 60px;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.marquee-inner span {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--deep);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 20px;
}

.marquee-inner span::before {
    content: '✦';
    font-size: 0.6rem;
    color: var(--deep);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===== CATEGORY FILTERS ===== */
.categories-section {
    background: var(--deep);
    padding: 60px 40px;
    text-align: center;
}

.section-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.section-label::before,
.section-label::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: rgba(201, 149, 42, 0.4);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 40px;
}

.cat-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.cat-btn {
    padding: 12px 28px;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    background: transparent;
    border: 1px solid rgba(201, 149, 42, 0.3);
    color: rgba(250, 246, 239, 0.65);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cat-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), #A07020);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.cat-btn:hover,
.cat-btn.active {
    color: var(--deep);
    border-color: var(--gold);
}

.cat-btn:hover::before,
.cat-btn.active::before {
    transform: scaleX(1);
}

/* ===== PRODUCTS GRID ===== */
.products-section {
    padding: 80px 40px;
    background: var(--cream);
    max-width: 1500px;
    margin: 0 auto;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.products-header .section-label {
    justify-content: flex-start;
}

.products-header .section-label::before {
    display: none;
}

.products-count {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* ===== SAREE CARD ===== */
.saree-card {
    background: var(--white);
    border: 1px solid rgba(201, 149, 42, 0.12);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    box-shadow: 0 2px 16px rgba(26, 10, 0, 0.07);
}

.saree-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold), 0 20px 60px rgba(26, 10, 0, 0.14);
    border-color: rgba(201, 149, 42, 0.35);
}

.card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 340px;
    background: var(--silk);
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.saree-card:hover .card-img-wrap img {
    transform: scale(1.08);
}

.card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, var(--maroon), #5A1515);
    color: var(--gold-pale);
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
    font-weight: 600;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 10, 0, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.saree-card:hover .card-overlay {
    opacity: 1;
}

.card-body {
    padding: 22px 22px 18px;
    border-top: 1px solid rgba(201, 149, 42, 0.1);
}

.card-type {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 500;
}

.card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 18px;
}

.card-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
    font-family: 'Jost', sans-serif;
    text-decoration: line-through;
    margin-left: 8px;
}

.card-actions {
    display: flex;
    gap: 8px;
}

.btn-view {
    flex: 1;
    padding: 10px 0;
    background: var(--deep);
    color: var(--gold-light);
    border: 1px solid var(--deep);
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-view:hover {
    background: var(--maroon);
    border-color: var(--maroon);
}

.btn-wa {
    padding: 10px 14px;
    background: #25D366;
    color: white;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-wa:hover {
    background: #1ebe5d;
    transform: scale(1.05);
}

/* ===== FLOATING SOCIAL BAR ===== */
.float-social {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 888;
    display: flex;
    flex-direction: column;
}

.fsb-item {
    display: flex;
    align-items: center;
    width: 52px;
    overflow: hidden;
    height: 52px;
    transition: width 0.35s ease;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}

.fsb-item:hover {
    width: 160px;
}

.fsb-icon {
    min-width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    transition: transform 0.3s;
    z-index: 1;
}

.fsb-item:hover .fsb-icon {
    transform: scale(1.1);
}

.fsb-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease 0.05s;
}

.fsb-item:hover .fsb-label {
    opacity: 1;
    transform: translateX(0);
}

.fsb-wa {
    background: #25D366;
    color: white;
}

.fsb-ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.fsb-fb {
    background: #1877F2;
    color: white;
}

.fsb-ct {
    background: var(--gold);
    color: var(--deep);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--deep);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding: 0 40px 60px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.footer-brand .tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(232, 184, 75, 0.5);
    display: block;
    margin-bottom: 20px;
}

.footer-brand p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: rgba(250, 246, 239, 0.6);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 1px solid rgba(201, 149, 42, 0.2);
    transition: all 0.3s;
    text-decoration: none;
    cursor: pointer;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--deep);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 28px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: rgba(250, 246, 239, 0.5);
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.footer-col ul a:hover {
    color: var(--gold-light);
}

.footer-contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}

.footer-contact-item .icon {
    color: var(--gold);
    font-size: 1rem;
    margin-top: 4px;
}

.footer-contact-item p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: rgba(250, 246, 239, 0.6);
    line-height: 1.5;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copy {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    color: rgba(250, 246, 239, 0.3);
    letter-spacing: 0.5px;
}

.footer-admin-btn {
    background: transparent;
    border: none;
    color: rgba(201, 149, 42, 0.3);
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s;
}

.footer-admin-btn:hover {
    color: var(--gold);
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(26, 10, 0, 0.6), rgba(26, 10, 0, 0.6)), url('https://images.unsplash.com/photo-1583337130417-3346a1be7dee?w=1600&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 72px;
}

.about-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5rem);
    color: var(--white);
    font-weight: 600;
}

.about-hero-content h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.about-hero-content p {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold-pale);
    margin-top: 10px;
}

.about-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.about-intro img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: var(--shadow-deep);
}

.about-intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--text);
    margin: 20px 0 30px;
    line-height: 1.2;
}

.about-intro-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.about-quote {
    border-left: 3px solid var(--gold);
    padding-left: 30px;
    margin: 40px 0;
}

.about-quote p {
    font-style: italic;
    font-size: 1.4rem;
    color: var(--text);
    line-height: 1.5;
}

.timeline {
    margin-bottom: 120px;
}

.timeline-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 70px;
}

.timeline-items {
    position: relative;
}

.timeline-items::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(201, 149, 42, 0.2);
    transform: translateX(-50%);
}

.tl-item {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    margin-bottom: 60px;
}

.tl-content {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(26, 10, 0, 0.05);
    border: 1px solid rgba(201, 149, 42, 0.08);
}

.tl-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.tl-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.tl-dot {
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    margin: 40px auto;
    position: relative;
    z-index: 1;
    border: 4px solid var(--cream);
    box-shadow: 0 0 0 4px rgba(201, 149, 42, 0.15);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 50px 30px;
    background: var(--white);
    border-radius: 4px;
    transition: transform 0.3s;
    box-shadow: 0 8px 32px rgba(26, 10, 0, 0.04);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--gold);
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.value-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
    height: 45vh;
    background: linear-gradient(rgba(26, 10, 0, 0.7), rgba(26, 10, 0, 0.7)), url('https://images.unsplash.com/photo-1519657337289-077653f724ed?w=1600&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 72px;
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--white);
}

.contact-hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.contact-main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-info>p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.7;
}

.info-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-pale);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border-radius: 2px;
}

.info-text h4 {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.info-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.6;
}

.map-wrap {
    margin-top: 50px;
    height: 300px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-wrap {
    background: var(--white);
    padding: 60px;
    border-radius: 4px;
    box-shadow: var(--shadow-deep);
    border: 1px solid rgba(201, 149, 42, 0.1);
}

.contact-form-wrap h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-form-wrap p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    border: 1px solid rgba(26, 10, 0, 0.1);
    background: var(--cream);
    color: var(--text);
    outline: none;
    transition: border-color 0.3s;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-error {
    color: var(--maroon);
    font-size: 0.75rem;
    margin-top: 6px;
    display: none;
}

.form-group.error input,
.form-group.error textarea {
    border-color: var(--maroon);
}

.form-group.error .form-error {
    display: block;
}

/* ===== ADMIN STYLES ===== */
#admin-login {
    background: var(--deep);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 149, 42, 0.2);
    width: 100%;
    max-width: 450px;
    padding: 60px 50px;
    border-radius: 4px;
}

.login-logo {
    text-align: center;
    margin-bottom: 40px;
}

.login-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold-light);
    letter-spacing: 2px;
}

.login-logo p {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(250, 246, 239, 0.5);
    margin-top: 5px;
}

.login-form label {
    color: rgba(250, 246, 239, 0.8);
}

.login-form input {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.login-error {
    background: rgba(123, 31, 31, 0.2);
    border: 1px solid var(--maroon);
    color: #ffbaba;
    padding: 12px;
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 24px;
    display: none;
}

#admin {
    background: #0f0702;
    min-height: 100vh;
    color: var(--cream);
}

.admin-wrap {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: #150a00;
    border-right: 1px solid rgba(201, 149, 42, 0.15);
    padding: 40px 0;
    display: flex;
    flex-direction: column;
}

.admin-sidebar-logo {
    padding: 0 30px 40px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold-light);
}

.admin-sidebar-logo span {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(250, 246, 239, 0.4);
    margin-top: 4px;
}

.sidebar-nav {
    flex: 1;
}

.sidebar-nav-item {
    padding: 16px 30px;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(250, 246, 239, 0.6);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 14px;
}

.sidebar-nav-item:hover,
.sidebar-nav-item.active {
    background: rgba(201, 149, 42, 0.1);
    color: var(--gold-light);
    border-left: 3px solid var(--gold);
}

.nav-icon {
    font-size: 1.1rem;
    opacity: 0.8;
}

.sidebar-logout {
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-content {
    padding: 40px 60px;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-topbar h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
}

.admin-topbar span {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    color: rgba(250, 246, 239, 0.4);
    letter-spacing: 1px;
}

.admin-panel {
    display: none;
}

.admin-panel.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 149, 42, 0.1);
    padding: 30px;
    border-radius: 4px;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--gold-light);
    margin-bottom: 6px;
}

.stat-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(250, 246, 239, 0.4);
}

.admin-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--gold-pale);
}

.admin-form {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.add-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.add-form-grid .full {
    grid-column: 1 / -1;
}

.admin-form label {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(250, 246, 239, 0.5);
    margin-bottom: 10px;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Jost', sans-serif;
    outline: none;
}

.admin-form select option {
    background: #1a0a00;
}

.img-preview-wrap {
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(201, 149, 42, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.img-preview-wrap img {
    max-height: 100%;
    display: none;
}

.img-preview-wrap p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: rgba(250, 246, 239, 0.3);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    text-align: left;
    padding: 16px 20px;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid rgba(201, 149, 42, 0.2);
}

.admin-table td {
    padding: 16px 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: rgba(250, 246, 239, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-table img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 2px;
}

.tbl-actions {
    display: flex;
    gap: 10px;
}

.btn-edit {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 14px;
    font-size: 0.75rem;
    cursor: pointer;
}

.btn-del {
    background: #7B1F1F;
    border: none;
    color: white;
    padding: 6px 14px;
    font-size: 0.75rem;
    cursor: pointer;
}

/* ===== SUCCESS POPUP ===== */
.success-popup,
.delete-confirm,
.product-modal {
    position: fixed;
    inset: 0;
    background: rgba(26, 10, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.success-popup.show,
.delete-confirm.show,
.product-modal.show {
    opacity: 1;
    visibility: visible;
}

.success-box,
.delete-box {
    background: var(--white);
    padding: 50px;
    max-width: 450px;
    text-align: center;
    border-radius: 4px;
    transform: scale(0.9);
    transition: transform 0.4s;
}

.success-popup.show .success-box,
.delete-confirm.show .delete-box {
    transform: scale(1);
}

.success-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 24px;
}

.success-box h3,
.delete-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--deep);
}

.success-box p,
.delete-box p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.delete-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.delete-btns .btn-edit {
    color: var(--deep);
    border-color: var(--deep);
}

/* ===== PRODUCT MODAL ===== */
.modal-box {
    background: var(--white);
    width: 90%;
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.5s;
}

.product-modal.show .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-img {
    height: 100%;
    background: var(--silk);
}

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

.modal-details {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-type {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.modal-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.modal-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.modal-price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--maroon);
    margin-bottom: 40px;
    font-weight: 700;
}

.modal-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

    .nav-links,
    .nav-search {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .timeline-items::before {
        left: 20px;
    }

    .tl-item {
        grid-template-columns: 40px 1fr;
    }

    .tl-item:nth-child(even) .tl-content {
        grid-column: 2;
    }

    .tl-item:nth-child(even) .tl-empty {
        display: none;
    }

    .tl-dot {
        grid-column: 1;
        margin: 6px 0;
    }

    .contact-main {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .modal-box {
        grid-template-columns: 1fr;
    }

    .modal-img {
        min-height: 280px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .add-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        display: none;
    }

    .float-social {
        display: none;
    }
}

@media (max-width: 600px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero .slide-content {
        left: 5%;
        right: 5%;
    }

    .nav-inner {
        padding: 0 20px;
    }

    .hero-arrows {
        right: 20px;
    }

    .products-section {
        padding: 50px 20px;
    }

    .contact-form-wrap {
        padding: 32px 24px;
    }

    .admin-panel {
        padding: 20px;
    }

    .login-card {
        padding: 40px 28px;
    }
}
