/* =========================================
   VARIABLES & SETUP
   ========================================= */
:root {
    --leather-base: #0f0a07;
    --leather-dark: #080503;
    --leather-light: #20150e;
    --gold: #dcb36a;
    --gold-light: #f5d799;
    --gold-dark: #a17f41;
    --text-main: #eae0d5;
    --text-muted: #9c9185;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    --transition: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--leather-base);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Global Simulated Leather Grain Overlay */
.leather-texture-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('https://img.freepik.com/free-photo/leather-texture-background_1373-356.jpg');
    background-size: cover;
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.text-center { text-align: center; }
.position-relative { position: relative; }
.z-3 { z-index: 3; }

/* =========================================
   TYPOGRAPHY & BUTTONS
   ========================================= */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--gold-light);
    font-weight: 400;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(to right, var(--gold-dark), var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divider {
    width: 80px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto 30px;
}

.divider.left {
    margin: 20px 0 30px;
}

.btn-solid, .btn-outline {
    display: inline-block;
    padding: 14px 35px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-solid {
    background-color: var(--gold);
    color: var(--leather-dark);
    font-weight: 700;
}

.btn-solid:hover {
    background-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

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

.btn-outline:hover {
    background: var(--gold);
    color: var(--leather-dark);
}

/* =========================================
   HEADER & NAVIGATION (Shared)
   ========================================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(8, 5, 3, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(220, 179, 106, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 60px;
    transition: var(--transition);
}

header.scrolled .logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links {
	list-style-type: none;
}

.nav-links li a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    position: relative;
}

.nav-links li a.active {
    color: var(--gold);
}

.nav-links li a:not(.btn-outline)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-links li a:hover:not(.btn-outline)::after, 
.nav-links li a.active:not(.btn-outline)::after {
    width: 100%;
}

.nav-links li a:hover {
    color: #ffffff;
}

.menu-toggle {
    display: none;
    color: var(--gold);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--gold-light);
}

/* =========================================
   HOME PAGE: HERO SLIDER
   ========================================= */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px; 
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: translateZ(0);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(15, 10, 7, 0.6) 0%, rgba(8, 5, 3, 0.95) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    width: 100%;
    padding: 0 5%;
    margin: 0 auto;
}

.hero-logo {
    width: 180px;
    margin-bottom: 30px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 5px 25px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 3px;
    height: 8px;
    background: var(--gold);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollMouse 2s infinite cubic-bezier(0.15, 0.41, 0.69, 0.94);
}

@keyframes scrollMouse {
    0% { top: 8px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* =========================================
   HOME PAGE: USP SECTION
   ========================================= */
.usp-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--leather-dark), var(--leather-base));
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.usp-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(220, 179, 106, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--gold);
    transition: var(--transition);
}

.usp-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-10px);
}

.usp-card:hover::before {
    height: 100%;
}

.usp-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.usp-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* =========================================
   HOME PAGE: ABOUT SECTION
   ========================================= */
.about-section {
    padding: 100px 0;
    background: url('https://img.freepik.com/free-photo/leather-texture_1194-5544.jpg') center/cover;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 10, 7, 0.92);
}

.about-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-dark);
    z-index: 1;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 3rem;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #d8d0c5;
}

/* =========================================
   HOME PAGE: PRODUCTS
   ========================================= */
.products-section {
    padding: 120px 0;
    background: var(--leather-base);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-item {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
}

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

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,5,3,1) 0%, rgba(8,5,3,0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: var(--transition);
}

.product-item:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

.product-item:hover .product-overlay {
    background: linear-gradient(to top, rgba(220,179,106,0.2) 0%, rgba(8,5,3,0) 80%);
}

.product-overlay h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: var(--transition);
}

.product-overlay p {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    color: var(--gold-light);
}

.product-item:hover .product-overlay h3 {
    transform: translateY(0);
}

.product-item:hover .product-overlay p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

/* =========================================
   HOME PAGE: MINI GALLERY 
   ========================================= */
.gallery-section {
    padding: 120px 0;
    background: var(--leather-dark);
}

.modern-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.7s ease;
    filter: grayscale(40%) contrast(1.2);
}

.gal-hover {
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(220,179,106,0);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8,5,3,0.4);
    opacity: 0;
    transition: all 0.5s ease;
    transform: scale(0.9);
}

.gal-hover span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%) contrast(1);
}

.gallery-item:hover .gal-hover {
    opacity: 1;
    border-color: rgba(220,179,106,0.6);
    transform: scale(1);
    background: rgba(8,5,3,0.7);
}

.gallery-item:hover .gal-hover span {
    transform: translateY(0);
}

/* =========================================
   GALLERY PAGE: BANNER & GRID
   ========================================= */
.page-banner {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(8 5 3 / 82%) 0%, rgb(15 10 7 / 81%) 100%);
    z-index: 1;
}

.page-banner h1 {
    font-size: 4rem;
    text-shadow: 0 5px 20px rgba(0,0,0,0.8);
}

.full-gallery-section {
    background: url(img/gallery-bg.jpg) center / cover fixed;
    padding: 80px 0;
    font-family: var(--font-body);
    color: var(--text-main);
}

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

.page-gallery-grid:has(> :last-child:nth-child(3n + 1))
> :last-child {
    grid-column: 2;
}

/* Last row has 2 items */
.page-gallery-grid:has(> :last-child:nth-child(3n + 2))
> :nth-last-child(2) {
    grid-column: 1 / span 1;
}

.page-gallery-grid:has(> :last-child:nth-child(3n + 2))
> :last-child {
    grid-column: 3 / span 1;
}

.pg-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    cursor: pointer;
    background: var(--leather-dark);
    border: 1px solid rgba(220, 179, 106, 0.1);
}

.pg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.8) grayscale(20%);
}

.pg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 5, 3, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.pg-overlay i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.pg-overlay span {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.pg-item:hover img {
    transform: scale(1.1);
    filter: brightness(1) grayscale(0%);
}

.pg-item:hover .pg-overlay {
    opacity: 1;
    border-color: rgba(220, 179, 106, 0.4);
}

.pg-item:hover .pg-overlay i { transform: scale(1); }
.pg-item:hover .pg-overlay span { transform: translateY(0); }

.gallery-grid-text {
	margin: 30px 0px 60px;
    text-align: center;
    font-size: 20px;
}

/* =========================================
   GALLERY PAGE: FULLSCREEN LIGHTBOX
   ========================================= */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 3, 2, 0.98);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--gold);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--text-main);
    transform: rotate(90deg);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 3rem;
    cursor: pointer;
    padding: 20px;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover, .lightbox-next:hover {
    color: var(--text-main);
    transform: translateY(-50%) scale(1.2);
}

.lightbox-content {
    position: relative;
    max-width: 80vw;
    max-height: 80vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    border: 1px solid rgba(220, 179, 106, 0.3);
    border-radius: 4px;
}

#lightbox-caption {
    margin-top: 15px;
    font-family: var(--font-heading);
    color: var(--gold-light);
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* =========================================
   CONTACT PAGE SPECIFIC STYLES
   ========================================= */
.contact-main-section {
    padding: 100px 0;
    background: var(--leather-base);
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--gold-light);
}

.contact-info .mb-40 {
    margin-bottom: 40px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(220, 179, 106, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(220, 179, 106, 0.05);
    border: 1px solid rgba(220, 179, 106, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    transition: var(--transition);
}

.info-item:hover .info-icon {
    background: var(--gold);
    color: var(--leather-dark);
    transform: scale(1.1);
}

.info-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 700;
}

.info-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form-container {
    flex: 1;
    background: var(--leather-dark);
    padding: 50px;
    border-radius: 8px;
    border: 1px solid rgba(220, 179, 106, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(220, 179, 106, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.valsh-form h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--gold-light);
}

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

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 4px;
    transition: var(--transition);
    outline: none;
}

.form-control::placeholder {
    color: rgba(156, 145, 133, 0.5);
}

.form-control:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(220, 179, 106, 0.1);
}

.form-submit {
    width: 100%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.map-section {
    width: 100%;
    line-height: 0;
    border-top: 1px solid rgba(220, 179, 106, 0.1);
}

.dark-map {
    filter: grayscale(100%) invert(92%) contrast(85%) hue-rotate(180deg);
}

/* =========================================
   ABOUT PAGE SPECIFIC STYLES
   ========================================= */
.company-profile-section {
    padding: 100px 0;
    background: var(--leather-base);
}

/* .profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
} */

.profile-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.profile-image img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid rgba(220, 179, 106, 0.2);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.mission-vision-section {
    background: url('https://img.freepik.com/free-photo/leather-texture_1194-5544.jpg') center/cover fixed;
    position: relative;
    padding: 85px 0px;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 6, 4, 0.95);
}

.mv-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(220, 179, 106, 0.15);
    padding: 50px 40px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(220, 179, 106, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

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

.mv-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.mv-card p, .mv-card li {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.mv-card ul {
    list-style: none;
}

.mv-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}

.mv-card ul li::before {
    content: '\f101';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--gold);
    font-size: 0.9rem;
}

/* REDESIGNED FOUNDER SECTION (Editorial Style) */
.founder-section {
    padding: 100px 0;
    background: var(--leather-base);
    position: relative;
}

.founder-editorial-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: center;
}

.founder-image-col {
    position: relative;
}

.image-frame {
    position: relative;
    z-index: 2;
}

.image-frame img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    filter: grayscale(20%) contrast(1.1);
}

.image-frame::after {
    content: '';
    position: absolute;
    top: 30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    z-index: -1;
    transition: transform 0.5s ease;
}

.founder-editorial-grid:hover .image-frame::after {
    transform: translate(15px, -15px);
}

.founder-text-col .subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: block;
    font-weight: 700;
}

.founder-text-col h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 10px;
}

.founder-text-col .role {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.editorial-quote {
    position: relative;
}

.editorial-quote::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 8rem;
    color: rgba(220, 179, 106, 0.08);
    position: absolute;
    top: -40px;
    left: -30px;
    line-height: 1;
    z-index: 0;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--gold-light);
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.editorial-quote p:not(.lead-text) {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Modern USP Grid */
.usp-modern-section {
    padding: 0px 0 100px 0;
    background: linear-gradient(to bottom, var(--leather-base), var(--leather-dark));
}

.usp-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.usp-box {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.01);
    border-top: 2px solid transparent;
    transition: var(--transition);
}

.usp-box:hover {
    background: rgba(255, 255, 255, 0.03);
    border-top-color: var(--gold);
    transform: translateY(-5px);
}

.usp-icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px auto;
    background: var(--leather-base);
    border: 1px solid rgba(220, 179, 106, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold-light);
    transition: var(--transition);
}

.usp-box:hover .usp-icon-wrap {
    background: var(--gold);
    color: var(--leather-dark);
}

.usp-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.usp-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   FOOTER (Shared)
   ========================================= */
/* =========================================
   CUSTOM EXACT REPLICA FOOTER
   ========================================= */

.valsh-custom-footer {
    background-color: #0b0b0b; /* Deep black matching the image */
    color: #ffffff;
    font-family: 'Montserrat', 'Lato', sans-serif;
    padding: 60px 20px 20px 20px;
}

.valsh-custom-footer .footer-top-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    gap: 30px;
}

.valsh-custom-footer h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

/* Follow Us Styling */
.follow-us-col {
    text-align: left;
}

.social-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-list li {
    margin-bottom: 18px;
}

.social-list a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    transition: opacity 0.3s ease;
}

.social-list a:hover {
    opacity: 0.8;
}

.social-list a i {
    background-color: #ffffff;
    color: #0b0b0b;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* Center Logo Styling */
.make-in-india-col {
    text-align: center;
}

.mii-logo {
    width: 100%;
    max-width: 380px; /* Scales exactly like the image */
    height: auto;
    opacity: 0.9;
}

/* Contact Us Styling */
.contact-us-col {
    text-align: right;
    padding-left: 20px;
}

.contact-details p {
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
}

/* Quick Links Styling */
.footer-quick-links-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 50px auto 30px auto;
}

.footer-quick-links-row h4 {
    margin: 0; /* Override bottom margin for inline flex */
}

.quick-nav {
    display: flex;
    gap: 40px;
	list-style-type: none;
}

.quick-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

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

.quick-nav a.active-link {
    color: var(--gold); /* Exact orange/gold highlight from the image */
}

/* Copyright Styling */
.footer-copyright-row {
    text-align: center;
    padding-top: 30px;
    margin-top: 20px;
}

.footer-copyright-row p {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .valsh-custom-footer .footer-top-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .follow-us-col, .contact-us-col {
        text-align: center;
        padding-left: 0;
    }

    .social-list a {
        justify-content: center;
    }

    .footer-quick-links-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .quick-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}
/* =========================================
   UTILITIES & ANIMATION CLASSES
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.slide-left { transform: translateX(50px); }
.reveal.slide-right { transform: translateX(-50px); }

.reveal.active {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* Staggered load-ins */
.hero-content .reveal-delay-1, .page-banner .reveal-delay-1 { opacity:0; animation: fadeUp 1s 0.2s forwards; }
.hero-content .reveal-delay-2, .page-banner .reveal-delay-2 { opacity:0; animation: fadeUp 1s 0.4s forwards; }
.hero-content .reveal-delay-3, .page-banner .reveal-delay-3 { opacity:0; animation: fadeUp 1s 0.6s forwards; }
.hero-content .reveal-delay-4 { opacity:0; animation: fadeUp 1s 0.8s forwards; }

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* =========================================
   RESPONSIVE DESIGN (TABLETS & MOBILE)
   ========================================= */
@media (max-width: 1024px) {
    .modern-gallery { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.wide { grid-column: span 1; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-content h1 { font-size: 3.5rem; }
    .page-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    
    /* About & Contact Adjustments */
    .usp-modern-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-wrapper { flex-direction: column; }
    .contact-form-container { width: 100%; padding: 40px 30px; }
    
    /* Redesigned Founder Responsive */
    .founder-editorial-grid { grid-template-columns: 1fr; gap: 40px; }
    .founder-image-col {
    max-width: 500px;
    margin: 0 auto 50px;
}
}

@media (max-width: 768px) {
    /* Menu Toggle Button */
	
    .menu-toggle {
		display: block;
		z-index: 1001;
		margin-right: 7%;
	}
    
    /* Mobile Dropdown Nav */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(8, 5, 3, 0.98);
        flex-direction: column;
        padding: 30px 0;
        border-bottom: 1px solid rgba(220, 179, 106, 0.2);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); /* Hidden */
        transition: clip-path 0.4s ease-in-out;
        z-index: 1000;
    }
    
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); /* Revealed */
    }
    
    .nav-links li a {
        margin: 15px 0;
        font-size: 1.1rem;
    }
    
    /* General Mobile Layout Adjustments */
    .hero-content h1, .page-banner h1 { font-size: 2.8rem; }
    .product-grid, .footer-grid, .modern-gallery, .page-gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.tall { grid-row: span 1; }
    
    /* Mobile Lightbox Controls */
    .lightbox-prev, .lightbox-next { padding: 10px; font-size: 2rem; }
    
    /* About Us specific mobile */
    .profile-grid, .mv-grid, .usp-modern-grid { grid-template-columns: 1fr; }
    .founder-text-col h2 { font-size: 2.5rem; }
}

/* =========================================
   PRODUCTS PAGE SPECIFIC STYLES
   ========================================= */

/* Primary Materials Section */
.material-section {
    padding: 100px 0;
    background: var(--leather-base);
}

/* .material-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
} */

.material-text .subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
    font-weight: 700;
}

.material-text h2 {
    font-size: 2.8rem;
    margin-bottom: 5px;
}

.material-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.material-image {
    position: relative;
    padding: 20px;
}

.material-image::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    border: 2px solid var(--gold-dark);
    z-index: 0;
}

.material-image img {
    width: 100%;
    position: relative;
    z-index: 1;
    border-radius: 2px;
    box-shadow: -15px 15px 40px rgba(0,0,0,0.6);
}

/* Distinctive Product USPs Section */
.product-usp-section {
    padding: 100px 0;
    background: url('https://img.freepik.com/free-photo/leather-texture_1194-5544.jpg') center/cover fixed;
    position: relative;
}

.product-usp-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 5, 3, 0.96); /* Very dark overlay */
}

.prod-usp-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.prod-usp-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(220, 179, 106, 0.1);
    transition: var(--transition);
}

.prod-usp-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(220, 179, 106, 0.3);
    transform: translateX(10px);
}

.prod-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--gold);
    color: var(--leather-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(220, 179, 106, 0.2);
}

.prod-usp-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--gold-light);
}

.prod-usp-info p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Product Showcase Layout (Slider + Text) */
.product-showcase-section {
    padding: 120px 0;
    background: #18110d;
}

.showcase-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    background: var(--leather-dark);
    border: 1px solid rgba(220, 179, 106, 0.1);
    border-radius: 8px;
    padding: 40px;
}

/* Slider Controls */
.showcase-slider-container {
    flex: 1;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    aspect-ratio: 4 / 3;
}

.product-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

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

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(8, 5, 3, 0.6);
    color: var(--gold);
    border: 1px solid var(--gold);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--gold);
    color: var(--leather-dark);
}

.prev-btn { left: 15px; }
.next-btn { right: 15px; }

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* Showcase Text Details */
.showcase-details {
    flex: 1;
}

.showcase-details .subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.showcase-details h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.price-tag {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.showcase-details p {
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 25px;
}

.product-features {
    list-style: none;
    margin-bottom: 40px;
}

.product-features li {
    margin-bottom: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.product-features li i {
    color: var(--gold);
    margin-top: 5px;
}

.showcase-actions {
    display: flex;
    gap: 20px;
}

/* Responsive Specifics for Products Page */
@media (max-width: 1024px) {
    .material-layout { grid-template-columns: 1fr; }
    .material-image { max-width: 600px; margin: 0 auto; }
    
    .showcase-wrapper { flex-direction: column; padding: 30px; }
    .showcase-slider-container {
    width: 100%;
    aspect-ratio: 4/4;
}
}

@media (max-width: 768px) {
    .prod-usp-grid { grid-template-columns: 1fr; }
    .prod-usp-card { flex-direction: column; text-align: center; align-items: center; }
    
    .showcase-actions { flex-direction: column; }
    .showcase-actions a { text-align: center; width: 100%; }
}

/* =========================================
   CERTIFICATES PAGE SPECIFIC STYLES
   ========================================= */

.certificates-section {
    padding: 100px 0 140px 0;
    background: var(--leather-base);
}

.certificates-section .section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-style: italic;
}

/* Sequential Grid Layout */
.cert-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); */
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.cert-card {
    background: var(--leather-dark);
    border: 1px solid rgba(220, 179, 106, 0.15);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.cert-card:hover {
    transform: translateY(-10px);
    border-color: rgba(220, 179, 106, 0.5);
    box-shadow: 0 20px 40px rgba(220, 179, 106, 0.1);
}

.cert-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.cert-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.85);
}

.cert-card:hover .cert-img-wrapper img {
    transform: scale(1.08);
    filter: brightness(1);
}

/* Hover Icon Overlay */
.cert-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 5, 3, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.cert-hover-overlay i {
    font-size: 2.5rem;
    color: var(--gold-light);
    transform: scale(0.5);
    transition: var(--transition);
}

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

.cert-card:hover .cert-hover-overlay i {
    transform: scale(1);
}

/* Certificate Title Bar */
.cert-title-bar {
    padding: 25px 30px;
    background: linear-gradient(to top, var(--leather-dark), var(--leather-base));
    border-top: 1px solid rgba(220, 179, 106, 0.1);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cert-title-bar h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--gold-light);
}

.cert-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   MODAL SPECIFIC STYLES (Certificates)
   ========================================= */
.cert-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.cert-modal.active {
    opacity: 1;
    pointer-events: all;
}

.cert-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 3, 2, 0.95);
    backdrop-filter: blur(8px);
}

.cert-modal-content {
    position: relative;
    z-index: 10001;
    background: var(--leather-base);
    width: 90%;
    max-width: 1000px;
    border: 1px solid var(--gold);
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.cert-modal.active .cert-modal-content {
    transform: translateY(0) scale(1);
}

.cert-close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2.5rem;
    color: var(--gold);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    line-height: 1;
}

.cert-close-btn:hover {
    color: var(--gold-light);
    transform: rotate(90deg);
}

.cert-modal-layout {
    display: flex;
    min-height: 400px;
}

.cert-modal-image-col {
    flex: 1;
    background: var(--leather-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(220, 179, 106, 0.15);
    position: relative;
    overflow: hidden;
}

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

.cert-modal-text-col {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cert-modal-text-col .subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cert-modal-text-col h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cert-modal-text-col p {
    color: var(--text-main);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Responsive specific to Certificates Modal */
@media (max-width: 900px) {
    .cert-modal-layout { flex-direction: column; }
    .cert-modal-image-col { height: 300px; border-right: none; border-bottom: 1px solid rgba(220, 179, 106, 0.15); }
    .cert-modal-text-col { padding: 40px 30px; }
    .cert-modal-text-col h2 { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    .cert-grid { grid-template-columns: 1fr; }
    .cert-modal-content { width: 95%; max-height: 90vh; overflow-y: auto; }
}

/* =========================================
   PRODUCT SHOWCASE SECTION (DARK THEME REPLICA)
   ========================================= */
.lhs-replica-section {
    /* background-color: var(--leather-base); */
    background: url('img/leather-textured-background.jpg') center/cover fixed;
    padding: 80px 0;
    font-family: var(--font-body);
    color: var(--text-main);
}

.lhs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lhs-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(220, 179, 106, 0.2); /* Dark theme subtle border */
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 13px;
    color: var(--text-muted);
}

.lhs-amount {
    margin: 0;
}

.lhs-sorter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lhs-sorter select {
    padding: 5px;
    background: var(--leather-dark);
    border: 1px solid rgba(220, 179, 106, 0.3);
    color: var(--text-main);
    font-size: 13px;
    outline: none;
    border-radius: 3px;
}

.lhs-category-title {
    font-size: 24px;
    color: var(--gold-light);
    margin-bottom: 10px;
    font-weight: 500;
    font-family: var(--font-body);
    text-transform: none;
    letter-spacing: normal;
    text-shadow: none;
    background: none;
    -webkit-text-fill-color: initial;
}

.lhs-category-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-shadow: none;
}

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

.lhs-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lhs-item-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid rgba(220, 179, 106, 0.1);
    margin-bottom: 15px;
    transition: border-color 0.3s;
}

.lhs-item-img:hover {
    border-color: var(--gold);
}

.lhs-item-title {
    display: block;
    font-size: 13px;
    font-weight: bold;
    color: var(--text-main);
    text-decoration: none;
    margin-bottom: 8px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.lhs-item-title:hover {
    color: var(--gold);
}

.lhs-item-avail {
    font-size: 12px;
    color: #aa3333; /* A muted red to indicate low stock availability */
    margin-bottom: 12px;
}

.lhs-btn {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 2px;
}

.lhs-btn:hover {
    background-color: var(--gold);
    color: var(--leather-dark);
}

/* Responsive adjustments for the grid */
@media (max-width: 1024px) {
    .lhs-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .lhs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .lhs-grid { grid-template-columns: 1fr; }
}

/* =========================================
   PRODUCT SINGLE PAGE SPECIFIC STYLES
   ========================================= */

/* Breadcrumbs */
.breadcrumb-section {
    padding: 150px 0 20px 0;
    background: var(--leather-base);
    border-bottom: 1px solid rgba(220, 179, 106, 0.1);
}

.breadcrumb-section a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.breadcrumb-section a:hover {
    color: var(--gold-light);
}

.breadcrumb-section i {
    color: var(--gold);
    font-size: 0.7rem;
    margin: 0 10px;
}

.breadcrumb-section span {
    color: var(--gold-light);
    font-size: 0.9rem;
}

/* Main Product Layout */
.product-single-main {
    padding: 60px 0 100px 0;
    background: var(--leather-base);
}

.ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Left: Image Gallery & Notes */
.ps-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ps-main-image-container {
    width: 100%;
/*     aspect-ratio: 4 / 3; */
    border: 1px solid rgba(220, 179, 106, 0.2);
    border-radius: 4px;
    overflow: hidden;
    background: var(--leather-dark);
}

.ps-main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.ps-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.ps-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.6;
}

.ps-thumb:hover {
    opacity: 1;
}

.ps-thumb.active {
    border-color: var(--gold);
    opacity: 1;
}

/* Description / Notes (Moved to left under images) */
.ps-description {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(220, 179, 106, 0.1);
}

.ps-description h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--gold-light);
}

.ps-description p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Right: Product Details */
.ps-details {
    display: flex;
    flex-direction: column;
}

.ps-title {
    font-size: 2.2rem;
    color: var(--gold-light);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.ps-pricing {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(220, 179, 106, 0.1);
}

.competitor-price {
    font-size: 1.1rem;
    color: #888;
}

.competitor-price del {
    color: #aa3333; 
}

.wholesale-price {
    font-size: 1.5rem;
    color: var(--gold-light);
}

.wholesale-price strong {
    font-size: 1.8rem;
}

.ps-stock-status {
    color: #4CAF50;
    font-weight: bold;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Actions */
.ps-sample-btn {
    width: 100%;
    margin-bottom: 40px;
    padding: 16px;
    font-size: 1.1rem;
    text-align: center;
}

/* Product Specs Table */
.ps-specs-table {
    background: var(--leather-dark);
    border: 1px solid rgba(220, 179, 106, 0.2);
    border-radius: 4px;
}

.spec-row {
    display: flex;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(220, 179, 106, 0.1);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    width: 140px;
    font-weight: bold;
    color: var(--gold);
}

.spec-value {
    color: var(--text-main);
}

/* Related Products Section */
.related-products-section {
    padding: 85px 0 85px 0;
    background: url('img/leather-textured-background.jpg') center/cover;
}

.related-title {
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 10px;
}

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

.related-card {
    text-decoration: none;
    background: var(--leather-base);
    border: 1px solid rgba(220, 179, 106, 0.1);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 179, 106, 0.4);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.related-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-bottom: 1px solid rgba(220, 179, 106, 0.1);
}

.related-info {
    padding: 15px;
    text-align: center;
}

.related-info h4 {
    color: var(--text-main);
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 1.4;
}

.related-info span {
    color: var(--gold);
    font-weight: bold;
}

/* Responsive adjustments for Product Single Page */
@media (max-width: 1024px) {
    .ps-grid { grid-template-columns: 1fr; gap: 40px; }
    .ps-gallery { max-width: 700px; margin: 0 auto; }
    .related-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .ps-title { font-size: 1.8rem; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .breadcrumb-section {padding: 120px 0 20px 0;}
}

@media (max-width: 480px) {
    .related-grid { grid-template-columns: 1fr; }
}

/* =========================================
   VALSH TIMELINE SECTION (THEME MATCHED)
   ========================================= */

.valsh-timeline-section {
    background-color: #140d0a;
    padding: 100px 0;
    font-family: var(--font-body);
    color: var(--text-main);
    overflow-x: hidden;
}

.timeline-main-heading {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold-light);
    margin-bottom: 80px;
    font-weight: 400;
}

.tree-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Central Vertical Line */
.tree-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: var(--gold);
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.3;
}

.tree-item {
    position: relative;
    width: 50%;
    z-index: 2;
    margin-bottom: -30px; /* Slight vertical overlap */
}

/* Positioning Alternating Sides */
.tree-item.left {
    left: 0;
    /* padding-right: 40px;  */
}

.tree-item.right {
    left: 50%;
    /* padding-left: 40px;
    margin-top: 100px; */
}

/* Content Box */
.tree-content {
    background-color: var(--leather-dark);
    border: 1px solid rgba(220, 179, 106, 0.15);
    padding: 15px 25px 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    transition: var(--transition);
}

.tree-content:hover {
    border-color: rgba(220, 179, 106, 0.4);
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.02);
}

.tree-item.left .tree-content {
    text-align: right;
}

.tree-item.right .tree-content {
    text-align: left;
}

/* Typography inside the box */
.tree-year {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 5px;
    line-height: 1;
}

.tree-stage {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--gold-light);
}

.tree-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

/* The Connecting Dots */
.tree-dot {
    position: absolute;
    top: 50px; 
    width: 16px;
    height: 16px;
    background-color: var(--gold);
    border: 4px solid var(--leather-base);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 0 2px rgba(220, 179, 106, 0.5);
    transition: var(--transition);
}

.tree-item:hover .tree-dot {
    background-color: var(--gold-light);
    box-shadow: 0 0 15px var(--gold);
}

.tree-item.left .tree-dot {
    right: -8px; /* Centers perfectly over the line */
}

.tree-item.right .tree-dot {
    left: -8px;
}

/* =========================================
   RESPONSIVE DESIGN (TABLETS & MOBILE)
   ========================================= */
@media (max-width: 768px) {
    .timeline-main-heading {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }

    .tree-timeline {
        padding-bottom: 40px;
    }

    /* Shift line to the left edge */
    .tree-line {
        left: 20px;
        transform: none;
    }

    .tree-item {
        width: 100%;
        margin-bottom: 40px;
    }

    .tree-item.left, 
    .tree-item.right {
        left: 0;
        padding-left: 22px; /* Space for the line and dot */
        padding-right: 0;
        margin-top: 0;
    }

    .tree-item.left .tree-content, .tree-item.right .tree-content {
        text-align: left;
        padding: 5px 20px 20px;
    }

    /* Re-align the dots to the left line */
    .tree-item.left .tree-dot,
    .tree-item.right .tree-dot {
        left: 12px; /* Centers dot over the line placed at 20px */
        right: auto;
    }
}

/* =========================================
   TOP BAR STYLES (UPDATED FIX)
   ========================================= */
.valsh-top-bar {
    background-color: #050302;
    color: var(--text-muted, #9c9185);
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 0.85rem;
    height: 45px; /* 1. Explicit fixed height prevents overlap */
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(220, 179, 106, 0.15);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.top-bar-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.top-bar-container a {
    color: var(--text-muted, #9c9185);
    text-decoration: none;
    transition: var(--transition, 0.3s ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

.top-bar-container a:hover {
    color: var(--gold-light, #f5d799);
}

.top-bar-container i {
    color: var(--gold, #dcb36a);
}

/* =========================================
   HEADER & NAVIGATION (UPDATED FIX)
   ========================================= */
header {
    position: fixed;
    top: 45px; /* 2. Matches exact height of the top bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

header.scrolled {
    top: 0; /* Glides to the top when user scrolls past the top bar */
    background: rgba(8, 5, 3, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(220, 179, 106, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 60px;
    object-fit: contain; /* 3. Prevents the image from cropping inside its box */
    transition: var(--transition, 0.4s);
}

header.scrolled .logo img {
    height: 45px;
}

/* Mobile Adjustments for Top Bar & Header */
@media (max-width: 768px) {
    .valsh-top-bar {
        display: none;
    }

    header {
        top: 0px;
    }
	.page-template-products .nav-container {
		max-width: 90%;
		margin: 0;
	}
	.page-gallery-grid {
		grid-template-columns: repeat(2, 2fr);
	}
	.pg-overlay span {
		font-size: 14px;
		text-align: center;
	}
	.pg-item {
		aspect-ratio: auto;
	}
}