/* 
   JK Jewellers Chirawa - Core Style Sheet
   Author: Senior UI/UX Designer & Frontend Developer
   Theme: Indian Heritage + Modern Luxury
*/

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables / Design System --- */
:root {
    --color-primary: #4B0F1A;       /* Deep Royal Maroon */
    --color-primary-rgb: 75, 15, 26;
    --color-secondary: #C9A227;     /* Luxury Gold */
    --color-secondary-light: #F4E8C1;
    --color-secondary-gradient: linear-gradient(135deg, #C9A227 0%, #E7C86A 50%, #A47D11 100%);
    --color-bg-white: #FFFFFF;
    --color-bg-light: #FAF7F2;      /* Cream Light Background */
    --color-dark: #1B1B1B;
    --color-dark-rgb: 27, 27, 27;
    --color-text: #333333;
    --color-text-muted: #666666;
    --color-border: #E8DCC4;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease-in-out;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-luxury: 0 20px 40px rgba(75, 15, 26, 0.08);
    
    --header-height: 90px;
    --header-shrink-height: 70px;
}

/* --- Global Reset & Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--color-secondary-gradient);
}

/* Motif divider for luxury headers */
.luxury-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0 35px 0;
}
.luxury-divider::before, .luxury-divider::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: var(--color-secondary);
}
.luxury-divider span {
    font-family: var(--font-heading);
    color: var(--color-secondary);
    font-size: 1.5rem;
    margin: 0 15px;
    position: relative;
    top: -2px;
}

p {
    font-weight: 300;
    color: var(--color-text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* --- Layout Utility Classes --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}
.section-light {
    background-color: var(--color-bg-light);
}
.section-dark {
    background-color: var(--color-dark);
    color: var(--color-bg-light);
}
.section-dark h2 {
    color: var(--color-bg-white);
}

/* --- Buttons & Call To Action --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 0;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    z-index: 1;
}

.btn-primary {
    background: var(--color-secondary-gradient);
    color: var(--color-dark);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.2);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.6s;
    z-index: -1;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

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

.btn-outline-gold {
    background: transparent;
    color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
}

.btn-outline-gold:hover {
    background: var(--color-secondary-gradient);
    color: var(--color-dark);
    transform: translateY(-3px);
}

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

.btn-dark:hover {
    background: var(--color-secondary-gradient);
    color: var(--color-dark);
    transform: translateY(-3px);
}

/* --- Sticky Header / Glassmorphism Navbar --- */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-wrapper.scrolled {
    height: var(--header-shrink-height);
    background: rgba(75, 15, 26, 0.9); /* Deep Royal Maroon with transparency */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Top bar with contact info - visible on home layout top before scroll */
.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background-color: var(--color-dark);
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    display: flex;
    align-items: center;
    z-index: 1001;
    font-size: 0.75rem;
    color: var(--color-secondary-light);
    transition: var(--transition-smooth);
}

.header-wrapper.scrolled + .top-bar,
.header-wrapper.scrolled .top-bar {
    transform: translateY(-100%);
    opacity: 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.top-bar-info span {
    margin-right: 20px;
    font-weight: 300;
}

.top-bar-info i {
    color: var(--color-secondary);
    margin-right: 5px;
}

.top-bar-social a {
    margin-left: 15px;
    transition: var(--color-secondary) var(--transition-fast);
}

.top-bar-social a:hover {
    color: var(--color-secondary);
}

.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
    margin-right: 12px;
    border: 1px solid var(--color-secondary);
    transition: var(--transition-smooth);
}

.header-wrapper.scrolled .logo img {
    height: 40px;
}

.logo-text h1 {
    font-size: 1.6rem;
    color: var(--color-secondary);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
    margin: 0;
}

.logo-text span {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--color-bg-white);
    letter-spacing: 3px;
    display: block;
}

/* Nav Links & Mega Menu */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-item {
    position: relative;
    padding: 0 18px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-bg-white);
    position: relative;
    padding: 10px 0;
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-item.active .nav-link {
    color: var(--color-secondary);
}

/* Animated underline */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-secondary-gradient);
    transition: var(--transition-smooth);
}

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

/* Mega Menu for Collections */
.has-mega-menu {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-dark);
    border-top: 2px solid var(--color-secondary);
    border-bottom: 1px solid var(--color-border);
    padding: 40px 80px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: grid;
    grid-template-columns: repeat(4, 1fr) 250px;
    gap: 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    z-index: 999;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-column h3 {
    font-family: var(--font-heading);
    color: var(--color-secondary);
    font-size: 1.25rem;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    padding-bottom: 8px;
    text-transform: none;
    letter-spacing: 0.5px;
}

.mega-column ul {
    list-style: none;
}

.mega-column ul li {
    margin-bottom: 10px;
}

.mega-column ul li a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-bg-light);
    display: block;
    position: relative;
    padding-left: 0;
    transition: var(--transition-fast);
}

.mega-column ul li a:hover {
    color: var(--color-secondary);
    padding-left: 8px;
}

.mega-column ul li a::before {
    content: '›';
    position: absolute;
    left: -10px;
    opacity: 0;
    transition: var(--transition-fast);
    color: var(--color-secondary);
}

.mega-column ul li a:hover::before {
    left: 0;
    opacity: 1;
}

.mega-featured {
    background: linear-gradient(135deg, rgba(75,15,26,0.9) 0%, rgba(27,27,27,0.9) 100%), url('../images/jwellery.jpeg');
    background-size: cover;
    background-position: center;
    border: 1px solid var(--color-secondary);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 200px;
}

.mega-featured h4 {
    color: var(--color-bg-white);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.mega-featured p {
    font-size: 0.7rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1005;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    background: var(--color-secondary);
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                opacity 0.55s ease;
}

.hamburger span:first-child {
    transform-origin: 0% 0%;
}

.hamburger span:nth-child(3) {
    transform-origin: 0% 100%;
}

.hamburger.active span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: var(--color-bg-white);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(-1px, -1px);
    background: var(--color-bg-white);
}

/* Page Loader styling */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(201, 162, 39, 0.2);
    border-radius: 50%;
    border-top-color: var(--color-secondary);
    animation: spin 1.5s linear infinite;
    position: relative;
}

.loader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    color: var(--color-secondary);
    font-size: 1.5rem;
    font-weight: bold;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Floating Call & WhatsApp Buttons --- */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: var(--color-bg-white);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.floating-whatsapp {
    background-color: #25D366;
    border: 2px solid #25D366;
}
.floating-whatsapp:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.floating-call {
    background-color: var(--color-primary);
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
}
.floating-call:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
}

.back-to-top {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-dark);
    color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    transform: translateY(-5px);
}

/* --- Hero Banner Section --- */
.hero-section {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-bg-white);
    overflow: hidden;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(27, 27, 27, 0.85) 0%, rgba(75, 15, 26, 0.5) 50%, rgba(27, 27, 27, 0.3) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 750px;
    padding-top: 60px;
}

.hero-content h3 {
    color: var(--color-secondary);
    text-transform: uppercase;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    margin-bottom: 25px;
    color: var(--color-bg-white);
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--color-bg-light);
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Animated scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-secondary);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-secondary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouseWheel 1.8s ease-in-out infinite;
}

@keyframes scrollMouseWheel {
    0% { top: 6px; opacity: 1; }
    50% { top: 20px; opacity: 0; }
    100% { top: 6px; opacity: 0; }
}

/* Scroll progress bar */
.progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 1001;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--color-secondary-gradient);
}

/* --- About Section & Stats --- */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 25px;
}

.about-signature {
    margin-top: 40px;
    border-top: 1px solid var(--color-border);
    padding-top: 25px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.sig-meta h4 {
    font-size: 1.25rem;
    color: var(--color-primary);
}

.sig-meta p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.sig-img {
    max-height: 60px;
    opacity: 0.85;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.about-img-item {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-img-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-secondary);
    margin: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    z-index: 2;
    opacity: 0;
    transition: var(--transition-smooth);
}

.about-img-item:hover::before {
    opacity: 1;
}

.about-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    display: block;
}

.about-img-item:hover img {
    transform: scale(1.08);
}

.about-img-tall {
    grid-row: span 2;
    height: 480px;
}

.about-img-wide {
    height: 230px;
}

/* Stats Cards Section */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.stat-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-luxury);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.stat-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
}

/* --- Categories Grid --- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-card {
    height: 400px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--color-bg-white);
    cursor: pointer;
    z-index: 1;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(27, 27, 27, 0.95) 0%, rgba(75, 15, 26, 0.4) 60%, transparent 100%);
    z-index: -1;
    transition: var(--transition-smooth);
}

.category-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: var(--transition-smooth);
}

.category-card h3 {
    color: var(--color-bg-white);
    font-size: 1.6rem;
    margin-bottom: 8px;
    transition: var(--transition-smooth);
}

.category-card p {
    color: var(--color-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.category-card .btn-category {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-bg-white);
    border-bottom: 1px solid var(--color-secondary);
    align-self: flex-start;
    padding-bottom: 4px;
    opacity: 0;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.category-card:hover::before {
    background: linear-gradient(to top, rgba(75, 15, 26, 0.98) 0%, rgba(27, 27, 27, 0.6) 80%, transparent 100%);
}

.category-card:hover img {
    transform: scale(1.1) rotate(1deg);
}

.category-card:hover h3 {
    color: var(--color-secondary);
    transform: translateY(-10px);
}

.category-card:hover p,
.category-card:hover .btn-category {
    opacity: 1;
    transform: translateY(0);
}

/* --- Featured Collection / Masonry Layout --- */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.masonry-item-h1 { height: 320px; }
.masonry-item-h2 { height: 480px; }
.masonry-item-h3 { height: 400px; }

.masonry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(75, 15, 26, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
    border: 1px solid var(--color-secondary);
    margin: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
}

.masonry-overlay h3 {
    color: var(--color-secondary);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.masonry-overlay p {
    color: var(--color-bg-white);
    font-size: 0.85rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.masonry-item:hover img {
    transform: scale(1.1);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

/* Light Reflection Shine Effect for Cards */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(30deg);
    transition: none;
    z-index: 3;
    pointer-events: none;
}

.shine-effect:hover::after {
    left: 130%;
    transition: all 0.8s ease-in-out;
}

/* --- Why Choose Us (Value Props) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(232, 220, 196, 0.15);
    backdrop-filter: blur(5px);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-secondary);
    margin: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box:hover {
    background: rgba(75, 15, 26, 0.2);
    border-color: var(--color-secondary);
    transform: translateY(-8px);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px auto;
    border: 1px solid rgba(201, 162, 39, 0.3);
    transition: var(--transition-smooth);
}

.feature-box:hover .feature-icon-wrapper {
    background: var(--color-secondary-gradient);
    color: var(--color-dark);
}

.feature-icon-wrapper svg {
    width: 32px;
    height: 32px;
    fill: var(--color-secondary);
    transition: var(--transition-smooth);
}

.feature-box:hover .feature-icon-wrapper svg {
    fill: var(--color-dark);
}

.feature-box h3 {
    color: var(--color-bg-white);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-box p {
    color: rgba(250, 247, 242, 0.7);
    font-size: 0.85rem;
}

/* --- Best Sellers --- */
.best-sellers-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--color-secondary);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background-color: var(--color-bg-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-primary);
    color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    padding: 3px 12px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-details h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.product-details p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 20px;
    border-top: 1px dashed var(--color-border);
    padding-top: 15px;
}

.product-price span {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--color-text-muted);
    margin-left: 5px;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.product-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.btn-whatsapp-inquiry {
    background-color: #25D366;
    color: var(--color-bg-white);
    border: 1px solid #25D366;
}

.btn-whatsapp-inquiry:hover {
    background-color: transparent;
    color: #25D366;
}

.btn-call-inquiry {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border: 1px solid var(--color-primary);
}

.btn-call-inquiry:hover {
    background-color: transparent;
    color: var(--color-primary);
}

/* --- Bridal Collection Banner Split Layout --- */
.bridal-banner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    background-color: var(--color-dark);
    border: 1px solid var(--color-secondary);
    overflow: hidden;
}

.bridal-banner-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bridal-banner-content h3 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.bridal-banner-content h2 {
    color: var(--color-bg-white);
    text-align: left;
    margin-bottom: 30px;
    font-size: 3rem;
}

.bridal-banner-content h2::after {
    left: 0;
    transform: none;
}

.bridal-banner-content p {
    color: rgba(250, 247, 242, 0.8);
    font-size: 1rem;
    margin-bottom: 40px;
    max-width: 550px;
}

.bridal-banner-image {
    position: relative;
    min-height: 450px;
}

.bridal-banner-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bridal-banner-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--color-dark) 0%, transparent 100%);
    z-index: 1;
}

/* --- Testimonials / Review Slider --- */
.reviews-section {
    position: relative;
    overflow: hidden;
}

.testimonial-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-card {
    flex: 0 0 100%;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    padding: 50px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.testimonial-card::before {
    content: '“';
    font-family: var(--font-heading);
    font-size: 8rem;
    color: rgba(201, 162, 39, 0.15);
    position: absolute;
    top: -20px;
    left: 40px;
    line-height: 1;
}

.review-stars {
    color: var(--color-secondary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.reviewer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-secondary);
}

.reviewer-details h4 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 2px;
}

.reviewer-details p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-secondary);
    font-style: normal;
    margin-bottom: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-border);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dot.active {
    background-color: var(--color-primary);
    width: 25px;
    border-radius: 5px;
}

/* --- Video Frame Section --- */
.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border: 2px solid var(--color-secondary);
    padding: 10px;
    background-color: var(--color-primary);
    box-shadow: var(--shadow-luxury);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: var(--color-dark);
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.video-poster-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(75, 15, 26, 0.45);
    transition: var(--transition-smooth);
}

.video-poster-overlay:hover::before {
    background: rgba(75, 15, 26, 0.6);
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-secondary-gradient);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-dark);
    font-size: 1.8rem;
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.4);
    z-index: 6;
    transition: var(--transition-smooth);
    animation: pulsePlay 2s infinite;
}

.video-poster-overlay:hover .play-btn {
    transform: scale(1.1);
    background: var(--color-bg-white);
    color: var(--color-primary);
}

.play-btn i {
    position: relative;
    left: 3px;
}

@keyframes pulsePlay {
    0% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(201, 162, 39, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0); }
}

/* --- Form Page & Elements --- */
.inquiry-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.inquiry-info h3 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.inquiry-info h2 {
    text-align: left;
    margin-bottom: 30px;
}

.inquiry-info h2::after {
    left: 0;
    transform: none;
}

.inquiry-details-list {
    margin: 40px 0;
}

.inquiry-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.inquiry-detail-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.inquiry-detail-text h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.inquiry-detail-text p {
    font-size: 0.85rem;
}

/* Glass Card Luxury Form */
.inquiry-form-container {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    padding: 40px;
    box-shadow: var(--shadow-luxury);
    position: relative;
}

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

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-white);
    color: var(--color-dark);
    border-radius: 0;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 5px rgba(75, 15, 26, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: #D32F2F;
    font-size: 0.75rem;
    margin-top: 5px;
    display: none;
}

/* Success Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 27, 27, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1010;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-modal {
    background: var(--color-bg-white);
    border: 2px solid var(--color-secondary);
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-luxury);
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.modal-overlay.active .success-modal {
    transform: scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(201, 162, 39, 0.1);
    color: var(--color-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    margin: 0 auto 25px auto;
    border: 1px solid var(--color-secondary);
}

.success-modal h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.success-modal p {
    margin-bottom: 30px;
}

.success-modal-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* --- Google Map Section --- */
.map-section {
    padding: 0;
    height: 450px;
    position: relative;
    border-bottom: 2px solid var(--color-secondary);
}

.map-container {
    width: 100%;
    height: 100%;
}

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

/* --- FAQ Accordion --- */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    padding: 15px 0;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 500;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--color-bg-light);
    color: var(--color-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    border: 1px solid var(--color-border);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-answer {
    padding: 15px 0 10px 0;
    font-size: 0.9rem;
    line-height: 1.8;
}

/* --- Blog List & Sidebar --- */
.blog-layout {
    display: grid;
    grid-template-columns: 2.2fr 0.8fr;
    gap: 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.blog-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--color-secondary);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-meta-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--color-primary);
    color: var(--color-secondary);
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.blog-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-body h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-body p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-readmore {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    border-bottom: 1.5px solid var(--color-secondary);
    align-self: flex-start;
    padding-bottom: 2px;
    transition: var(--transition-fast);
}

.btn-readmore:hover {
    color: var(--color-secondary);
    border-color: var(--color-primary);
}

/* Sidebar Styles */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-widget {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    padding: 30px;
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 10px;
    position: relative;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--color-secondary);
}

/* Search widget */
.search-form {
    display: flex;
}

.search-form input {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid var(--color-border);
    font-family: var(--font-body);
    font-size: 0.85rem;
}

.search-form button {
    background: var(--color-primary);
    color: var(--color-bg-white);
    border: none;
    padding: 0 18px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-form button:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
}

/* Categories Widget */
.widget-categories-list {
    list-style: none;
}

.widget-categories-list li {
    margin-bottom: 12px;
    border-bottom: 1px dashed rgba(232, 220, 196, 0.4);
    padding-bottom: 8px;
}

.widget-categories-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.widget-categories-list a {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.widget-categories-list a:hover {
    color: var(--color-secondary);
}

/* Recent Posts widget */
.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.recent-post-item:last-child {
    margin-bottom: 0;
}

.recent-post-thumb {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    overflow: hidden;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h4 {
    font-size: 1.05rem;
    line-height: 1.3;
    margin-bottom: 5px;
}

.recent-post-info span {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.page-num {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.page-num.active, .page-num:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border-color: var(--color-primary);
}

/* --- Single Blog Layout --- */
.breadcrumbs {
    background-color: var(--color-bg-light);
    padding: 15px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--color-border);
    margin-top: var(--header-height);
}

.breadcrumbs ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.breadcrumbs li::after {
    content: '/';
    margin-left: 10px;
    color: var(--color-text-muted);
}

.breadcrumbs li:last-child::after {
    content: '';
}

.breadcrumbs li.active {
    color: var(--color-primary);
    font-weight: 500;
}

.blog-single-content {
    background: var(--color-bg-white);
}

.post-header {
    margin-bottom: 30px;
}

.post-cat {
    color: var(--color-secondary);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
}

.post-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.post-meta-details {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 15px;
}

.post-meta-details span i {
    color: var(--color-secondary);
    margin-right: 5px;
}

.post-featured-image {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
    margin-bottom: 35px;
    border: 1px solid var(--color-border);
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-entry-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.post-entry-content p {
    margin-bottom: 25px;
    color: var(--color-text);
}

.post-entry-content h2, .post-entry-content h3 {
    margin: 40px 0 20px 0;
    text-align: left;
}

.post-entry-content h2::after {
    display: none;
}

.post-entry-content blockquote {
    background-color: var(--color-bg-light);
    border-left: 4px solid var(--color-secondary);
    padding: 25px 30px;
    margin: 35px 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    font-style: italic;
    line-height: 1.5;
}

/* Post Share */
.post-share {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 20px 0;
    margin: 40px 0;
}

.post-share h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
}

.share-links {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.share-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border-color: var(--color-primary);
}

/* Post Author */
.post-author {
    display: flex;
    gap: 25px;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    padding: 30px;
    margin-bottom: 40px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--color-secondary);
}

.author-info h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.author-info p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Related articles */
.related-posts {
    margin-top: 60px;
}

.related-posts h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 10px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-post-card {
    border: 1px solid var(--color-border);
}

.related-post-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post-details {
    padding: 15px;
}

.related-post-details h4 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 5px;
}

.related-post-details a {
    font-size: 0.75rem;
    color: var(--color-secondary);
    font-weight: 500;
}

/* --- Catalog Page Filters --- */
.catalog-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-group {
    display: flex;
    gap: 10px;
    list-style: none;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--color-border);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border-color: var(--color-primary);
}

.sort-select {
    padding: 8px 15px;
    border: 1px solid var(--color-border);
    font-family: var(--font-body);
    font-size: 0.8rem;
}

.sort-select:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* --- Custom Luxury 404 Page --- */
.error-404-wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    text-align: center;
    padding: 24px;
    position: relative;
    z-index: 1;
}

.error-404-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
}

.error-404-content {
    max-width: 600px;
}

.error-404-content h1 {
    font-size: 8rem;
    line-height: 1;
    color: var(--color-secondary);
    margin-bottom: 20px;
    font-weight: 700;
}

.error-404-content h2 {
    color: var(--color-bg-white);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.error-404-content h2::after {
    background: var(--color-secondary-gradient);
}

.error-404-content p {
    color: var(--color-bg-light);
    margin-bottom: 40px;
}

/* --- Footer --- */
.footer {
    background-color: var(--color-dark);
    color: var(--color-bg-light);
    border-top: 2px solid var(--color-secondary);
    font-size: 0.85rem;
}

.footer-top {
    padding: 80px 0 50px 0;
    display: grid;
    grid-template-columns: 1fr 0.6fr 0.6fr 0.8fr;
    gap: 40px;
}

.footer-column h3 {
    color: var(--color-secondary);
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--color-secondary);
}

.footer-column p {
    color: rgba(250, 247, 242, 0.7);
    line-height: 1.8;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 45px;
    width: auto;
    border-radius: 50%;
    margin-right: 12px;
    border: 1px solid var(--color-secondary);
}

.footer-logo-text h2 {
    font-size: 1.4rem;
    color: var(--color-secondary);
    text-align: left;
    margin-bottom: 0;
    padding-bottom: 0;
    font-weight: 700;
}
.footer-logo-text h2::after {
    display: none;
}

.footer-logo-text span {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-bg-white);
    display: block;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(250, 247, 242, 0.7);
    display: inline-block;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-secondary);
    transform: translateX(5px);
}

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

.footer-contact-item i {
    color: var(--color-secondary);
    font-size: 1rem;
    margin-top: 3px;
}

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

/* Newsletter */
.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid rgba(232, 220, 196, 0.3);
    background: rgba(255,255,255,0.05);
    color: var(--color-bg-white);
    font-family: var(--font-body);
    font-size: 0.8rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-secondary);
}

.newsletter-form button {
    background: var(--color-secondary-gradient);
    color: var(--color-dark);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--color-bg-white);
    color: var(--color-primary);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(232, 220, 196, 0.15);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.75rem;
    color: rgba(250, 247, 242, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.footer-bottom-links a {
    color: rgba(250, 247, 242, 0.5);
}

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

/* Custom cursor glow and mouse follower styles */
.cursor-glow {
    width: 20px;
    height: 20px;
    background: var(--color-secondary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
    opacity: 0;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-secondary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease-out, width 0.2s, height 0.2s;
    opacity: 0;
}

body:hover .cursor-glow,
body:hover .cursor-follower {
    opacity: 1;
}

.cursor-hover .cursor-glow {
    width: 40px;
    height: 40px;
    background: var(--color-secondary);
    opacity: 0.5;
}

.cursor-hover .cursor-follower {
    width: 60px;
    height: 60px;
    border-color: var(--color-primary);
}
