/* ==========================================================================
   AASTHA EXIM - Custom Design System & Luxury Style Sheet
   ========================================================================== */

/* Variables */
:root {
    /* Color Palette */
    --color-bg: #FCFAF7;
    --color-bg-alt: #F4EFEA;
    --color-text-main: #000000;
    --color-text-muted: #000;
    --color-primary:#013f9b;      /* Terracotta */
    --color-primary-hover: #013f9b;
    --color-accent: #013f9b;       /* Muted Gold */
    --color-border: #E6DFD7;
    --color-grid-line: #013f9b;    /* Tailor/Sewing grid lines */
    
    /* Fonts */
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-sans: 'Jost', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Layout */
    --container-width: 1400px;
    --header-height: 100px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.15;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.text-center {
    text-align: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Button styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: var(--font-sans);
}

.btn-primary {
    background-color: var(--color-primary);
    color: #FFF;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    padding-right: 34px;
}

.btn-primary .arrow-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow-icon {
    transform: translateX(6px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-main);
    border-color: var(--color-text-main);
}

.btn-secondary:hover {
    background-color: var(--color-text-main);
    color: #FFF;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Section Common Styles */
section {
    padding: 100px 0;
    position: relative;
    
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-primary);
    font-size: 22px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 48px;
    letter-spacing: 0.03em;
    color: var(--color-text-main);
    text-transform: uppercase;
}

/* Header Styles */
.main-header {
    height: var(--header-height);
    background-color: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px dashed var(--color-grid-line);
}

.header-container {
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

/* Header Sections */
.header-section {
    display: flex;
    align-items: center;
    height: 100%;
    border-right: 1px dashed var(--color-grid-line);
}

.logo-section {
    width: 260px;
    padding-left: 40px;
    padding-right: 20px;
    flex-shrink: 0;
}

.nav-section {
    flex-grow: 1;
    justify-content: center;
    padding: 0 40px;
}

.action-section {
    width: 90px;
    justify-content: center;
    flex-shrink: 0;
}

.cart-section {
    border-right: none; /* End of container */
}

/* Logo block */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    flex-shrink: 0;
}

.logo-text-img {
    max-width: 115px;
    width: 100%;
    height: auto;
    display: block;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 24px;
    letter-spacing: 0.12em;
    font-weight: 500;
    color: var(--color-text-main);
    line-height: 0.9;
}

.logo-subtext {
    font-size: 8px;
    letter-spacing: 0.22em;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 5px;
}

/* Nav Menu */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: #000000;
    padding: 10px 0;
    display: inline-flex;
    align-items: center;
}

.nav-link .carat {
    color: var(--color-primary);
    margin-left: 6px;
    font-size: 14px;
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.nav-link:hover .carat {
    transform: translateY(2px);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary);
}

/* Header Actions */
.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-main);
    padding: 10px;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.action-btn:hover {
    color: var(--color-primary);
}

.cart-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: var(--color-primary);
    color: #FFF;
    font-size: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px;
    border-left: 1px dashed var(--color-grid-line);
    height: 100%;
    width: 80px;
    justify-content: center;
    align-items: center;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--color-text-main);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    padding-top: var(--header-height);
    padding-bottom: 150px; /* Space for the absolute positioned banner at bottom */
    background-color: #FFF;
    min-height: 850px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
}

.hero-content {
    padding-left: 140px; /* Offset to align with header logo start */
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-tagline {
    font-family: 'Herr Von Muellerhoff', cursive;
    font-size: 68px;
    color: var(--color-primary);
    margin-bottom: -10px;
    display: block;
    line-height: 0.6;
    letter-spacing: 0.05em;
    font-weight: 400;
    text-transform: none;
    transform: rotate(-1deg);
}

.hero-title {
    font-size: 105px;
    line-height: 0.9;
    letter-spacing: -0.01em;
    color: var(--color-text-main);
    text-transform: uppercase;
    margin-bottom: 40px;
    font-family: var(--font-serif);
    font-weight: 300;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #FFF;
    border: none;
    padding: 16px 36px;
    font-size: 13px;
    letter-spacing: 0.1em;
    font-family: var(--font-sans);
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    padding-right: 36px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -150px; /* Pulls the bottom of the spool thread over the banner */
    z-index: 5;
}

.spool-wrapper {
    position: relative;
    max-width: 420px;
    width: 100%;
}

.hero-spool-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Yarn Banner Section */
.yarn-banner-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 240px; /* Cut-off height showing the tops of yarn skeins */
    overflow: hidden;
    display: flex;
    
    z-index: 1;
}

.yarn-banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.yarn-banner-container:hover .yarn-banner-img {
    transform: scale(1.03);
}

/* Stats Section */
.stat-section {
    padding: 80px 0;
    background-color: var(--color-bg-alt);
}

.stat-card {
    border-left: 1px dashed var(--color-grid-line);
    padding-left: 30px;
}

.stat-card:first-child {
    border-left: none;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 64px;
    color: var(--color-primary);
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.stat-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stat-desc {
    color: var(--color-text-muted);
    font-size: 15px;
    font-weight: 300;
}

/* Collections Grid */
.collection-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.filter-btn {
    background: none;
    border: 1px solid var(--color-border);
    padding: 8px 20px;
    font-size: 13px;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--color-text-main);
    color: #FFF;
    border-color: var(--color-text-main);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    margin-top: 50px;
}

.product-card {
    transition: all 0.4s ease;
}

.product-card.hidden {
    display: none;
}

.product-img-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    background-color: var(--color-bg-alt);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.placeholder-img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-size: cover;
    background-position: center;
}

/* Generate beautiful backgrounds utilizing CSS gradients since we're generating this app from scratch */
.bedding-img-1 { background-image: linear-gradient(135deg, #e3dbd5 0%, #c5bba8 100%); }
.fabrics-img-1 { background-image: linear-gradient(135deg, #dfd2c4 0%, #b89f8d 100%); }
.living-img-1  { background-image: linear-gradient(135deg, #e7dec8 0%, #bfa88a 100%); }
.bedding-img-2 { background-image: linear-gradient(135deg, #ebdcd6 0%, #c4a9a0 100%); }
.fabrics-img-2 { background-image: linear-gradient(135deg, #dce3e5 0%, #a4b3b8 100%); }
.living-img-2  { background-image: linear-gradient(135deg, #d3cbbd 0%, #9c8e7b 100%); }

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(28, 43, 57, 0.3);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease;
}

.product-card:hover .placeholder-img {
    transform: scale(1.05);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding-top: 20px;
}

.product-category {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}

.product-title {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

.product-description {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* Craftsmanship Section */
.craftsmanship-section {
    padding: 0;
}

.craftsmanship-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
}

.craft-img-side {
    background-image: linear-gradient(135deg, #e5dfd9 0%, #beb1a2 100%);
    position: relative;
    padding: 60px;
    display: flex;
    align-items: flex-end;
}

.craft-overlay-card {
    background-color: #FFF;
    padding: 40px;
    max-width: 380px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.03);
    border-left: 4px solid var(--color-primary);
}

.craft-overlay-card h4 {
    font-size: 26px;
    margin-bottom: 12px;
}

.craft-overlay-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 300;
}

.craft-content-side {
    padding: 100px 80px;
    background-color: var(--color-bg-alt);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.craft-text {
    font-size: 18px;
    color: var(--color-text-muted);
    font-weight: 300;
    margin: 30px 0 40px 0;
}

.craft-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.craft-detail-item h5 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.craft-detail-item p {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* Sustainability */
.sus-lead {
    font-size: 20px;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 20px auto 60px auto;
    font-weight: 300;
}

.sus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.sus-card {
    padding: 40px;
    border: 1px dashed var(--color-grid-line);
    background-color: #FFF;
    transition: all 0.3s ease;
}

.sus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
    border-style: solid;
    border-color: var(--color-primary);
}

.sus-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.sus-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.sus-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* Contact/Inquiry Section */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}

.contact-intro {
    font-size: 18px;
    color: var(--color-text-muted);
    font-weight: 300;
    margin: 20px 0 40px 0;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 24px;
    line-height: 1;
    padding: 10px;
    background-color: var(--color-bg-alt);
    border-radius: 4px;
}

.contact-detail-row h6 {
    font-size: 16px;
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.contact-detail-row p {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* Form Styles */
.inquiry-form {
    background-color: #FFF;
    padding: 50px;
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.02);
}

.form-title {
    font-size: 28px;
    margin-bottom: 30px;
    border-bottom: 1px dashed var(--color-grid-line);
    padding-bottom: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg);
    font-family: var(--font-sans);
    font-size: 14px;
    transition: all 0.3s ease;
    color: var(--color-text-main);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: #FFF;
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.form-group textarea[readonly] {
    background-color: #F8F6F2;
    cursor: default;
    font-style: italic;
    color: var(--color-text-muted);
}

.form-feedback {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}

.form-feedback.success {
    color: #2e7d32;
}

.form-feedback.error {
    color: #c62828;
}

/* Search Modal Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(252, 250, 247, 0.98);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.search-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.close-search {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    color: var(--color-text-main);
}

.search-container {
    width: 600px;
    max-width: 90%;
    position: relative;
}

.search-input {
    width: 100%;
    border: none;
    background: none;
    font-family: var(--font-serif);
    font-size: 32px;
    padding: 10px 0;
    color: var(--color-text-main);
}

.search-input:focus {
    outline: none;
}

.search-bar-line {
    height: 2px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.search-overlay.active .search-bar-line {
    transform: scaleX(1);
}

/* Scroll Animation classes */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.main-footer {
    background-color: #FFF;
    color: #111;
    padding: 80px 0 0 0;
    border-top: 1px solid #EEE;
    border-bottom: none;
    font-family: var(--font-sans);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1.3fr 1.7fr;
    gap: 40px;
}

/* Left Group */
.footer-left-group {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
}

.footer-col-title {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.footer-col-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col-links li {
    margin-bottom: 12px;
    color: #000;
    font-size: 16px;
    line-height: 1.6;
}

.footer-col-links a {
    color: #000;
    transition: color 0.3s;
}

.footer-col-links a:hover {
    color: #111;
}

.font-small li {
    font-size: 16px;
}

/* Center Group */
.footer-center-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #EEE;
    border-right: 1px solid #EEE;
    padding: 0 30px;
    text-align: center;
}

.footer-brand-logo {
    font-family: var(--font-sans);
    font-size: 40px;
    font-weight: 800;
    color: #111;
    margin-bottom: 25px;
    letter-spacing: -0.01em;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-circle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #013f9b;
    border-radius: 50%;
    color: #013f9b;
    transition: all 0.3s ease;
}

.social-circle-btn:hover {
    color: #111;
    border-color: #111;
    transform: translateY(-2px);
}

/* Right Group */
.footer-right-group {
    padding-left: 45px;
}

.newsletter-desc {
    font-size: 14px;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.6;
}

.newsletter-input-wrap {
    display: flex;
    align-items: center;
    background-color: #F4F4F4;
    border-radius: 4px;
    padding: 2px 2px 2px 18px;
    width: 100%;
    max-width: 320px;
}

.aose-input {
    background: none;
    border: none;
    color: #111;
    font-size: 13.5px;
    width: 100%;
    outline: none;
    font-family: var(--font-sans);
}

.aose-input::placeholder {
    color: #999;
}

.aose-submit-btn {
    background-color: #013f9b;
    color: #FFF;
    border: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s;
    border-radius: 4px;
}

.aose-submit-btn:hover {
    opacity: 0.85;
}

/* Footer Bottom Row */
.footer-bottom-row {
    border-top: 1px solid #EEE;
    margin-top: 60px;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: #000;
    font-size: 13.5px;
}

.footer-payments {
    display: flex;
    gap: 12px;
    align-items: center;
}

.payment-icon {
    opacity: 0.5;
    transition: opacity 0.3s;
    flex-shrink: 0;
}

.payment-icon:hover {
    opacity: 1;
}

/* Footer Responsive Details */
@media (max-width: 992px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-center-group {
        border-left: none;
        border-right: none;
        border-top: 1px solid #EEE;
        border-bottom: 1px solid #EEE;
        padding: 40px 0;
    }
    
    .footer-right-group {
        padding-left: 0;
    }
    
    .footer-bottom-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
}

/* Exclusive Fabric Range Section */
.exclusive-range-section {
    background-color: #FFF;
    padding: 100px 0;
    
}

.range-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.range-visual {
    display: flex;
    justify-content: center;
}

.range-yarn-img {
    max-width: 480px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.range-yarn-img:hover {
    transform: scale(1.02);
}

.range-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.range-title {
    font-size: 38px;
    line-height: 1.15;
    letter-spacing: 0.05em;
    color: var(--color-text-main);
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: var(--font-serif);
    font-weight: 300;
}

.range-subtitle {
    
    
    line-height: 1.1;
    font-weight: 400;
    color: var(--color-text-muted);
    margin-bottom: 35px;
    text-transform: none;
    text-align: left;
    transform: rotate(-1deg);
    max-width: 460px;
}

.range-link {
    font-family: var(--font-sans);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.range-link:hover {
    color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    padding-left: 5px;
}

/* Interactive Split Slider Section */
.split-slider-section {
    background-color: #FFF;
    padding: 0;
    border-bottom: 1px dashed var(--color-grid-line);
}

.slider-wrapper {
    width: 100%;
    height: 520px;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

.slide-left, .slide-right {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-left,
.slide.active .slide-right {
    transform: scale(1.02);
}

/* Slide 1 Background Images representing Bed and Sunset Mattress */
.slide-bed-bg {
    background-image: url('img/slider_bed.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-couple-bg {
    background-image: url('img/slider_couple.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Slide 2: Linen folds and organic bedroom gradients */
.slide-linens-bg {
    background: linear-gradient(135deg, #E6DFD7 0%, #CEB19E 100%);
}

.slide-interior-bg {
    background: linear-gradient(135deg, #A4B2BF 0%, #1C2B39 100%);
}

/* Overlapping Text and Button in Center */
.slider-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 600px;
    pointer-events: none;
   
}

.slider-overlay-title {
    font-family: var(--font-serif);
    font-size: 56px;
    color: #FFF;
    text-transform: capitalize;
    margin-bottom: 25px;
    font-weight: 300;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    opacity: 1;
    transform: translate(0, 0);
    transition: opacity 0.4s ease, transform 0.4s ease;
    background: #013f9b;
}

.slider-shop-btn {
    pointer-events: auto;
    background-color: #FFF;
    color: #1A2836;
    border: none;
    padding: 16px 36px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slider-shop-btn:hover {
    background-color: var(--color-primary);
    color: #FFF;
    transform: translateY(-2px);
}

/* Indicators */
.slider-indicators {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.indicator-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
}

.indicator-line {
    width: 0px;
    height: 1px;
    background-color: #FFF;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

.indicator-num {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.indicator-btn.active .indicator-line {
    width: 40px;
    opacity: 1;
}

.indicator-btn.active .indicator-num {
    color: #FFF;
    font-weight: 600;
}

/* Brand Partners Bar */
.brand-partners-section {
    background-color: #FFF;
    padding: 50px 0;
    
}

.partners-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-logo {
    width: 190px;
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    opacity: 0.65;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.partner-logo svg {
    width: 100%;
    height: 100%;
}

.partner-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Gallery Grid Section (3 columns) */
.gallery-grid-section {
    background-color: #FFF;
    padding: 0;
   
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}



.gallery-column:last-child {
    border-right: none;
}

.gallery-card {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gallery-img-wrapper {
    position: relative;
    aspect-ratio: 1/1;
    width: 100%;
    background-color: var(--color-bg-alt);
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Product Gallery Background Images */
.cushions-pillow-img {
    background-image: url('img/gallery_cushions.jpg');
}

.curtains-drapes-img {
    background-image: url('img/benefits_curtain.jpg');
}

.table-linen-img {
    background-image: url('img/gallery_linens.jpg');
}

.bed-linen-img {
    background-image: url('img/slider_bed.jpg');
}

.outdoor-shower-img {
    background-image: url('img/discover_towels.jpg');
}

.fabric-rolls-img {
    background-image: url('img/fabric_rolls.jpg');
}

.gallery-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 5;
    pointer-events: none;
    background: #013f9b;
    padding: 15px;
}

.gallery-tag {
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}

.gallery-card-title {
    font-size: 28px;
    color: #fff;
    font-family: var(--font-serif);
    text-transform: uppercase;
    font-weight: 400;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.04);
}

/* Full Cycle Production Section */
.production-cycle-section {
    background-color: #0E171E;
    /* Repeating SVG pattern matching the geometric waves mockup */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 0 A40 40 0 0 0 0 40 A40 40 0 0 0 40 80 A40 40 0 0 0 80 40 A40 40 0 0 0 40 0 Z M40 10 A30 30 0 0 1 70 40 A30 30 0 0 1 40 70 A30 30 0 0 1 10 40 A30 30 0 0 1 40 10 Z M40 20 A20 20 0 0 2 60 40 A20 20 0 0 2 40 60 A20 20 0 0 2 20 40 A20 20 0 0 2 40 20 Z' fill='none' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.045'/%3E%3C/svg%3E");
    background-repeat: repeat;
    padding: 100px 0;
    position: relative;
    border-bottom: 1px dashed var(--color-grid-line);
}

.cycle-section-title {
    color: #FFF;
    font-size: 36px;
    letter-spacing: 0.05em;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 60px;
    font-family: var(--font-serif);
}

.cycle-tabs {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.cycle-tab-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 15px 30px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.cycle-tab-btn:hover {
    color: #FFF;
}

.cycle-tab-btn.active {
    color: #FFF;
}

.cycle-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
}

/* Showcase Layout */
.cycle-showcase {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    text-align: left;
}

.cycle-visual {
    background-color: #0A1116;
    border: 1px solid rgba(255, 255, 255, 0.05);
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
}

.visual-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.visual-panel.active {
    opacity: 1;
    pointer-events: auto;
}

.factory-spools-schematic {
    width: 100%;
    height: 100%;
}

.factory-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.visual-panel:hover .factory-img {
    transform: scale(1.05);
}

.factory-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Animations inside SVG visual panels */
.spool-reel {
    transform-origin: 140px 160px;
}
.spool-reel:nth-child(2) {
    transform-origin: 240px 160px;
}
.spool-reel:nth-child(3) {
    transform-origin: 340px 160px;
}

.animate-spin-slow {
    animation: slow-vibe 4s ease-in-out infinite alternate;
}

@keyframes slow-vibe {
    0% { transform: scaleY(0.98) translateY(1px); }
    100% { transform: scaleY(1.02) translateY(-1px); }
}

.scanner-laser {
    animation: scanning 3s ease-in-out infinite alternate;
}

@keyframes scanning {
    0% { transform: translateY(0); }
    100% { transform: translateY(220px); }
}

/* Detail Card Panel */
.cycle-details {
    position: relative;
    min-height: 420px;
}

.details-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    background-color: #EFECE6; /* Off-white card background from mockup */
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.details-panel.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.cycle-detail-title {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 500;
    color: #1A2836;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cycle-detail-desc {
    font-size: 14px;
    color: #5C6A79;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cycle-checks {
    list-style: none;
    margin-bottom: 40px;
}

.cycle-checks li {
    font-size: 14px;
    font-weight: 500;
    color: #1C2B39;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    color: var(--color-primary);
    font-weight: bold;
}

.cycle-read-more {
    align-self: flex-start;
    padding: 12px 28px;
    font-size: 12px;
}

/* Floating Scissor Button */
.scissor-floating-btn {
    position: absolute;
    bottom: 30px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #EFECE6;
    color: #1C2B39;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.scissor-floating-btn:hover {
    background-color: var(--color-primary);
    color: #FFF;
    transform: translateY(-3px) rotate(15deg);
}

/* Responsive Styling */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        padding-left: 40px;
        padding-right: 40px;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 58px;
    }
    
    .collections-grid, .grid-3, .sus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .range-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .range-content {
        align-items: center;
    }

    .range-subtitle {
        text-align: center;
        margin: 0 auto 35px auto;
    }

    .range-yarn-img {
        max-width: 380px;
    }

    .slider-wrapper {
        height: 420px;
    }

    .slider-overlay-title {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .slider-shop-btn {
        padding: 14px 30px;
        font-size: 10px;
    }

    .cycle-showcase {
        grid-template-columns: 1fr;
    }

    .cycle-details {
        min-height: auto;
    }

    .details-panel {
        position: relative;
        padding: 40px 30px;
    }
    
    .craftsmanship-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .container {
        padding: 0 20px;
    }
    
    .header-container {
        padding: 0;
    }

    .logo-section {
        width: auto;
        padding-left: 20px;
        flex-grow: 1;
        border-right: none;
    }

    .logo-text-img {
        max-width: 110px;
        max-height: 52px;
        object-fit: contain;
    }

    .nav-section {
        display: block;
        width: 0;
        padding: 0;
        border: none;
    }

    .action-section {
        width: 60px;
    }

    .search-section {
        display: flex;
        border-left: 1px dashed var(--color-grid-line);
    }

    .profile-section {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background-color: var(--color-bg);
        border-bottom: 1px dashed var(--color-grid-line);
        padding: 20px 40px;
        transform: translateY(-120%);
        transition: transform 0.4s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 44px;
    }

    .range-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .range-subtitle {
        font-size: 38px;
        margin-bottom: 25px;
    }

    .range-yarn-img {
        max-width: 280px;
    }

    .slide {
        grid-template-columns: 1fr;
    }

    .slide-left {
        display: none; /* Hide bed on mobile to display sunset mattress couple scene */
    }

    .slider-wrapper {
        height: 380px;
    }

    .slider-overlay-title {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .slider-shop-btn {
        padding: 12px 26px;
        font-size: 9px;
    }

    .slider-indicators {
        bottom: 25px;
        gap: 20px;
    }

    .indicator-btn {
        padding: 5px;
    }
    
    .collections-grid, .grid-3, .sus-grid, .footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }

    .gallery-column {
        border-right: none;
        border-bottom: 1px dashed var(--color-grid-line);
    }

    .gallery-column:last-child {
        border-bottom: none;
    }

    .partners-container {
        justify-content: center;
        gap: 20px;
    }

    .partner-logo {
        width: 100px;
    }
    
    .stat-card {
        border-left: none;
        border-bottom: 1px dashed var(--color-grid-line);
        padding-left: 0;
        padding-bottom: 20px;
    }
    
    .stat-card:last-child {
        border-bottom: none;
    }
    
    .inquiry-form {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 32px;
    }

    .cycle-section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .cycle-tabs {
        flex-wrap: wrap;
        gap: 5px;
        margin-bottom: 30px;
    }

    .cycle-tab-btn {
        padding: 8px 15px;
        font-size: 11px;
        flex-grow: 1;
        text-align: center;
    }

    .cycle-tab-btn.active::after {
        height: 1px;
    }

    .details-panel {
        padding: 30px 20px;
    }

    .cycle-detail-title {
        font-size: 18px;
    }

    .scissor-floating-btn {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Benefits Section Styles */
.benefits-section {
    background-color: #FFF;
    padding: 100px 0;
    
}

.benefits-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefits-tagline {
    font-family: 'Herr Von Muellerhoff', cursive;
    font-size: 64px;
    color: #013f9b;
    margin-bottom: 10px;
    display: block;
    line-height: 0.6;
    letter-spacing: 0.05em;
    font-weight: 400;
}

.benefits-title {
    font-size: 34px;
    line-height: 1.25;
    letter-spacing: 0.04em;
    color: var(--color-text-main);
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: var(--font-serif);
    font-weight: 300;
}

.benefits-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 380px;
}

.benefits-btn {
    background-color: #013f9b;
    color: #FFF;
    border: none;
    padding: 14px 28px;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.benefits-btn:hover {
    background-color: var(--color-text-main);
    color: #FFF;
    padding-right: 34px;
}

/* Middle Image Block */
.benefits-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.benefits-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/5;
    border: 1px solid var(--color-border);
}

.benefits-badge {
    position: absolute;
    top: -30px;
    right: -30px;
    z-index: 10;
    background-color: transparent;
    border-radius: 50%;
    padding: 4px;
    animation: rotate-badge 30s linear infinite;
}

@keyframes rotate-badge {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Right Stats Block */
.benefits-stats {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.benefit-stat-row {
    padding: 30px 0;
    border-bottom: 1px dashed var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-stat-row:first-child {
    padding-top: 0;
}

.benefit-stat-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.benefit-stat-num {
    font-family: var(--font-serif);
    font-size: 68px;
    color: var(--color-text-main);
    line-height: 1.1;
    font-weight: 300;
    display: block;
    margin-bottom: 5px;
}

.benefit-stat-label {
    font-family: var(--font-sans);
    font-size: 13px;
    text-transform: capitalize;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    font-weight: 400;
}

/* Responsive details for Benefits */
@media (max-width: 992px) {
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .benefits-content {
        align-items: center;
        text-align: center;
    }
    
    .benefits-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .benefits-image-wrapper {
        max-width: 320px;
    }
    
    .benefits-stats {
        align-items: center;
    }
    
    .benefit-stat-row {
        align-items: center;
        width: 100%;
        text-align: center;
    }
}

/* Discover Services Section */
.discover-services-section {
    background-color: #FFF;
    padding: 100px 0;
    
}

.discover-title {
    font-size: 44px;
    line-height: 1.15;
    letter-spacing: 0.05em;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 60px;
    font-family: var(--font-serif);
    font-weight: 300;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.discover-col {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    border: 1px solid var(--color-border);
}

.discover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.discover-col:hover .discover-img {
    transform: scale(1.05);
}

/* Tablet / Mobile view */
@media (max-width: 992px) {
    .discover-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .discover-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .discover-grid {
        grid-template-columns: 1fr;
    }
}

/* Instagram Inspiration Section */
.instagram-feed-section {
    background-color: #FFF;
    padding: 80px 0 0 0;
}

.instagram-title {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: var(--font-sans);
}

.instagram-divider-line {
    width: 60px;
    height: 1px;
    background-color: var(--color-accent);
    margin: 0 auto 50px auto;
}

.instagram-grid-container {
    position: relative;
    width: 100%;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    width: 100%;
}

.instagram-col {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
}

.instagram-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.instagram-col:hover .instagram-img {
    transform: scale(1.05);
}

.instagram-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-col:hover .instagram-hover-overlay {
    opacity: 1;
}

/* Central floating Instagram Badge overlay */
.instagram-center-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    pointer-events: auto;
}

.instagram-badge-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 10px 25px rgba(214, 36, 159, 0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.instagram-badge-link:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(214, 36, 159, 0.6);
}

/* Tablet & Mobile responsive layouts */
@media (max-width: 992px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .instagram-center-badge {
        transform: translate(-50%, -50%) scale(0.9);
    }
    .instagram-badge-link:hover {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .instagram-center-badge {
        transform: translate(-50%, -50%) scale(0.8);
    }
}

/* About Page Styles */
.about-hero-section {
    position: relative;
    height: 380px;
    background-image: url('img/about_banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    margin-top: 0;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 5;
    color: #FFF;
        margin: 80px 0px 0px 0px;
}

.about-hero-title {
    font-size: 52px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 15px;
    font-family: var(--font-serif);
}

.about-breadcrumb {
    font-family: var(--font-sans);
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.about-breadcrumb a {
    color: #FFF;
    transition: color 0.3s;
}

.about-breadcrumb a:hover {
    color: var(--color-accent);
}

.about-breadcrumb .current-crumb {
    color:#fff;
    font-weight: 500;
}

/* Story Section */
.about-story-section {
    background-color: #FFF;
    padding: 100px 0;
    
}

.story-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.story-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.story-tagline {
    font-family: 'Herr Von Muellerhoff', cursive;
    font-size: 64px;
    color: var(--color-primary);
    margin-bottom: 10px;
    display: block;
    line-height: 0.6;
    letter-spacing: 0.05em;
    font-weight: 400;
}

.story-title {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 0.03em;
    color: var(--color-text-main);
    text-transform: uppercase;
    margin-bottom: 30px;
    font-family: var(--font-serif);
    font-weight: 300;
}

.story-text {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.story-img {
    width: 100%;
    max-width: 440px;
    height: auto;
    object-fit: cover;
    border: 1px solid var(--color-border);
    transition: transform 0.6s ease;
}

.story-img:hover {
    transform: scale(1.02);
}

/* Core Values Grid */
.core-values-section {
    background-color: var(--color-bg-alt);
    padding: 100px 0;
   
}

.values-tagline {
    font-family: 'Herr Von Muellerhoff', cursive;
    font-size: 58px;
    color: var(--color-primary);
    margin-bottom: 10px;
    display: block;
    line-height: 0.6;
}

.values-main-title {
    font-size: 38px;
    letter-spacing: 0.06em;
    color: var(--color-text-main);
    text-transform: uppercase;
    font-family: var(--font-serif);
    font-weight: 300;
    margin-bottom: 20px;
}

.values-divider {
    width: 60px;
    height: 1px;
    background-color: var(--color-primary);
    margin: 0 auto 60px auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
}

.value-card {
    background-color: #FFF;
    border: 1px solid var(--color-border);
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 35px rgba(1, 63, 155, 0.08);
}

.value-num {
    font-family: var(--font-serif);
    font-size: 40px;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 25px;
    font-weight: 300;
}

.value-title {
    font-size: 16px;
    letter-spacing: 0.12em;
    color: var(--color-text-main);
    text-transform: uppercase;
    font-family: var(--font-sans);
    font-weight: 600;
    margin-bottom: 15px;
}

.value-desc {
    font-size: 13.5px;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.6;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .story-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .story-content {
        align-items: center;
        text-align: center;
    }
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .value-card {
        padding: 35px 25px;
    }
}

/* Exclusive Experience Section */
.about-promo-section {
    background-color: #FFF;
    padding: 100px 0;
    
}

.promo-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.promo-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.promo-tagline {
    font-family: 'Herr Von Muellerhoff', cursive;
    font-size: 64px;
    color: var(--color-primary);
    margin-bottom: 10px;
    display: block;
    line-height: 0.6;
    letter-spacing: 0.05em;
    font-weight: 400;
}

.promo-title {
    font-size: 38px;
    line-height: 1.25;
    letter-spacing: 0.04em;
    color: var(--color-text-main);
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: var(--font-serif);
    font-weight: 300;
}

.promo-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 420px;
}

.promo-phone-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.promo-phone-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #F4EFEA;
    color: var(--color-primary);
}

.promo-phone-text {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 11px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.phone-number {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-main);
}

.promo-sofa-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border: 1px solid var(--color-border);
}

.promo-right {
    width: 100%;
}

.promo-texture-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    border: 1px solid var(--color-border);
    transition: transform 0.6s ease;
}

.promo-texture-img:hover {
    transform: scale(1.01);
}

/* Tablet & Mobile responsive overrides */
@media (max-width: 992px) {
    .promo-grid-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .promo-left {
        align-items: center;
        text-align: center;
    }
    .promo-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .promo-phone-row {
        justify-content: center;
    }
    .promo-sofa-img {
        max-width: 320px;
        margin-bottom: 20px;
    }
    .promo-texture-img {
        aspect-ratio: 1/1;
        max-width: 480px;
        margin: 0 auto;
        display: block;
    }
}

/* About Page Process Section */
.about-process-section {
    padding: 100px 0;
    background-color: #fff;
    
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.process-col {
    text-align: center;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Dashed vertical lines separating the columns */
.process-col:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    height: 80%;
    width: 1px;
    border-right: 1px dashed var(--color-border);
}

.process-icon-wrap {
    margin-bottom: 30px;
    color: var(--color-accent);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease;
}

.process-col:hover .process-icon-wrap {
    transform: translateY(-5px);
}

.process-svg {
    width: 64px;
    height: 64px;
    stroke-width: 1.0;
    color: #013f9b;
}

.process-col h3 {
    font-size: 18px;
    
    text-transform: uppercase;
    font-family: var(--font-serif);
    margin-bottom: 15px;
    color: var(--color-text-main);
    font-weight: 400;
}

.process-desc-text {
    font-size: 13px;
    color: #000;
    font-weight: 300;
    line-height: 1.6;
    max-width: 260px;
    margin: 0 auto;
}

/* Responsive adjustments for process workflow */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 50px;
    }
    
    .process-col:nth-child(2)::after {
        display: none;
    }
    
    .process-col::after {
        height: 70%;
        top: 15%;
    }
}

@media (max-width: 600px) {
    .about-process-section {
        padding: 60px 0;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
    
    .process-col {
        padding: 0 20px;
    }
    
    .process-col::after {
        display: none;
    }
    
    .process-col:not(:last-child) {
        border-bottom: 1px dashed var(--color-border);
        padding-bottom: 40px;
    }
}

/* About Page Scrolling Ticker */
.about-ticker-section {
    background-color: var(--color-bg-alt); /* Light gray-cream background */
    padding: 22px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
}

.about-ticker-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
}

.about-ticker-group {
    display: flex;
    align-items: center;
    animation: aboutTickerScroll 30s linear infinite;
}

.about-ticker-group span {
    font-family: var(--font-serif);
    font-size: 28px;
    letter-spacing: 0.12em;
    color: #05429d;
    display: inline-flex;
    align-items: center;
    font-weight: 300;
}

.ticker-star {
    color: #e05a36; /* Accent terracotta orange */
    margin: 0 30px;
    font-size: 32px;
    line-height: 1;
    position: relative;
    top: 2px;
}

@keyframes aboutTickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .about-ticker-section {
        padding: 16px 0;
    }
    .about-ticker-group span {
        font-size: 20px;
    }
    .ticker-star {
        font-size: 24px;
        margin: 0 20px;
    }
}

/* FAQ Section Styling */
.about-faq-section {
    padding: 100px 0;
    background-color: #fff;
    
}

.faq-grid-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.faq-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.faq-tagline {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #013f9b;
    font-weight: 500;
    margin-bottom: 20px;
}

.faq-main-title {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 25px;
    font-family: var(--font-serif);
    color: var(--color-text-main);
    font-weight: 300;
}

.faq-desc {
    font-size: 14px;
    color: #000;
    font-weight: 300;
    line-height: 1.6;
    max-width: 440px;
}

.faq-right {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-question {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--color-text-main);
    font-weight: 400;
    transition: color 0.3s ease;
}

.faq-trigger:hover .faq-question {
    color: #05429d;
}

.faq-icon-svg {
    transition: transform 0.4s ease;
    color: var(--color-text-main);
    flex-shrink: 0;
    margin-left: 20px;
    display: block;
}

.faq-line-vertical {
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform-origin: center;
}

.faq-item.active .faq-line-vertical {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon-svg {
    color: var(--color-accent);
}


.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-content p {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.6;
    padding-bottom: 24px;
}

.faq-item.active .faq-content {
    max-height: 250px;
}

@media (max-width: 992px) {
    .faq-grid-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .faq-main-title {
        font-size: 38px;
    }
    
    .about-faq-section {
        padding: 60px 0;
    }
}

/* ==================== Floating WhatsApp Widget (Left Slide) ==================== */
.whatsapp-float {
    position: fixed;
    left: 0;
    bottom: 160px; /* Anchored vertically */
    width: 175px; /* Fixed width to make translation offset exact */
    background-color: #0f8a7c; /* Teal color matching the user's screenshot */
    color: #FFF;
    border-radius: 0 30px 30px 0; /* Rounded only on the right edge */
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px 12px 16px;
    box-shadow: 4px 4px 15px rgba(0,0,0,0.15);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.3s ease;
    transform: translateX(-121px); /* Hide the text portion exactly, leaving only the icon visible */
}

.whatsapp-float:hover {
    transform: translateX(0); /* Slide in to reveal the entire button */
    background-color: #0d7367; /* Darker teal on hover */
    color: #FFF;
}

.whatsapp-text {
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 11px;
}

.whatsapp-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.whatsapp-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 120px;
    }
}



