/* Product Detail Premium Improvements */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@500;600;700;800&display=swap");

.product-description h1 {
    margin-top: 0;
    margin-bottom: 22px;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 700;
    letter-spacing: -0.045em;
    color: #241f1a;
}

.product-description>p {
    margin-bottom: 34px;
    font-size: 16px;
    line-height: 1.9;
    color: #6f665d;
}

.product.slider {
    overflow: hidden;
    border-radius: 28px;
    background: #f5f1ec;
    box-shadow: 0 24px 70px rgba(47, 42, 37, 0.12);
}

.product.slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-description .tabs {
    margin-top: 34px;
}

.product-description .nav-tabs {
    border-bottom: 1px solid rgba(47, 42, 37, 0.12);
}

.product-description .nav-tabs>li>a {
    margin-right: 18px;
    padding: 0 0 14px;
    border: 0;
    background: transparent;
    color: #8b8178;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-description .nav-tabs>li.active>a,
.product-description .nav-tabs>li.active>a:hover,
.product-description .nav-tabs>li.active>a:focus,
.product-description .nav-tabs>li>a:hover {
    border: 0;
    background: transparent;
    color: #241f1a;
}

.product-description .nav-tabs>li.active>a {
    position: relative;
}

.product-description .nav-tabs>li.active>a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: #241f1a;
}

.product-tab-content {
    padding-top: 28px;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.spec-row {
    padding: 18px 18px;
    border: 1px solid rgba(47, 42, 37, 0.1);
    border-radius: 18px;
    background: rgba(245, 241, 236, 0.55);
}

.spec-row span {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9a8f84;
}

.spec-row strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
    color: #2f2a25;
}

.spec-row-full {
    grid-column: 1 / -1;
}

.product-order-card {
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f8f4ef 0%, #eee5da 100%);
    border: 1px solid rgba(47, 42, 37, 0.1);
}

.order-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #8b8178;
    text-transform: uppercase;
}

.product-order-card h4 {
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 700;
    color: #241f1a;
}

.product-order-card p {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.8;
    color: #6f665d;
}

.product-order-form .form-control {
    min-height: 48px;
    margin-bottom: 16px;
    border: 1px solid rgba(47, 42, 37, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: none;
    color: #241f1a;
}

.product-order-form textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.product-order-form .form-control:focus {
    border-color: rgba(47, 42, 37, 0.38);
    box-shadow: 0 0 0 4px rgba(47, 42, 37, 0.06);
}

.product-action-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.product-submit-btn,
.product-whatsapp-btn {
    min-height: 48px;
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.product-submit-btn {
    border: 0;
    background: #241f1a;
    color: #fff;
}

.product-submit-btn:hover,
.product-submit-btn:focus {
    background: #3a332c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(47, 42, 37, 0.18);
}

.product-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(47, 42, 37, 0.16);
    background: rgba(255, 255, 255, 0.64);
    color: #241f1a;
}

.product-whatsapp-btn:hover,
.product-whatsapp-btn:focus {
    color: #241f1a;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(47, 42, 37, 0.1);
}

@media (max-width: 991px) {
    .product-description {
        margin-top: 42px;
    }

    .product-description h1 {
        text-align: center;
    }

    .product-description>p {
        text-align: center;
    }

    .product-specs {
        grid-template-columns: 1fr;
    }

    .product-action-row {
        flex-direction: column;
        align-items: stretch;
    }

    .product-submit-btn,
    .product-whatsapp-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .product-description h1 {
        font-size: 34px;
    }

    .product-description>p {
        font-size: 15px;
        line-height: 1.8;
    }

    .product-order-card {
        padding: 22px;
        border-radius: 20px;
    }

    .spec-row {
        padding: 16px;
        border-radius: 16px;
    }

    .product-description .nav-tabs {
        display: flex;
        justify-content: center;
    }

    .product-description .nav-tabs>li>a {
        margin-right: 12px;
        font-size: 12px;
    }
}

/* About Page Premium Improvements */

.about-page {
    background: #fffaf5;
}

.about-page .about-hero {
    position: relative;
    overflow: hidden;
}

.about-page .about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(20, 16, 13, 0.18) 0%, rgba(20, 16, 13, 0.62) 100%);
    pointer-events: none;
}

.about-page .about-hero .container {
    position: relative;
    z-index: 2;
}

.about-eyebrow,
.about-section-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a9937a;
}

.about-page .about-hero h1 {
    max-width: 860px;
    margin: 0 auto;
    font-size: clamp(42px, 6vw, 84px);
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.about-hero-text {
    max-width: 680px;
    margin: 24px auto 0;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.84);
}

.about-primary-btn,
.about-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 15px 26px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.about-primary-btn {
    margin-top: 34px;
    background: #f5f1ec;
    color: #241f1a;
}

.about-primary-btn:hover,
.about-primary-btn:focus {
    color: #241f1a;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.about-section {
    padding: 96px 0;
}

.about-intro-section {
    background: #fffaf5;
}

.about-intro-row {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-intro-section h2,
.about-story-content h2,
.about-process-section h2,
.about-production-section h2,
.about-cta-card h2,
.about-section-heading h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.06;
    letter-spacing: -0.045em;
    color: #241f1a;
}

.about-intro-section p,
.about-story-content p,
.about-process-section p,
.about-production-section p,
.about-cta-card p,
.about-section-heading p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.9;
    color: #6f665d;
}

.about-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 54px;
}

.about-value-card,
.about-service-card,
.about-process-item {
    border: 1px solid rgba(47, 42, 37, 0.1);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 22px 58px rgba(47, 42, 37, 0.06);
}

.about-value-card {
    padding: 28px;
    border-radius: 26px;
}

.about-value-card span,
.about-process-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: #efe5da;
    color: #7d6751;
    font-weight: 800;
}

.about-value-card h3,
.about-service-card h3,
.about-process-item h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 800;
    color: #241f1a;
}

.about-value-card p,
.about-service-card p,
.about-process-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #6f665d;
}

.about-story-section,
.about-process-section {
    background: linear-gradient(135deg, #f5f1ec 0%, #eee5da 100%);
}

.about-story-row,
.about-production-row,
.about-process-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-image-card {
    min-height: 560px;
    border-radius: 34px;
    background-position: center;
    background-size: cover;
    box-shadow: 0 28px 80px rgba(47, 42, 37, 0.16);
}

.about-story-content {
    padding-left: 46px;
}

.about-check-list {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.about-check-list li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 34px;
    font-size: 15px;
    line-height: 1.7;
    color: #2f2a25;
}

.about-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #241f1a;
    color: #fff;
    font-size: 12px;
    line-height: 22px;
    text-align: center;
}

.about-section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
}

.about-services-section {
    background: #fffaf5;
}

.about-service-card {
    min-height: 292px;
    margin-bottom: 28px;
    padding: 30px 24px;
    border-radius: 26px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(47, 42, 37, 0.1);
}

.about-service-card .icon {
    margin-bottom: 24px;
    font-size: 42px;
    color: #9b8066;
}

.about-process-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-process-item {
    display: flex;
    gap: 22px;
    padding: 26px;
    border-radius: 24px;
}

.about-process-item span {
    flex: 0 0 42px;
    margin-bottom: 0;
}

.about-production-section {
    background: #fffaf5;
}

.about-mini-gallery {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 240px 240px;
    gap: 18px;
}

.about-gallery-item {
    border-radius: 26px;
    background-position: center;
    background-size: cover;
    box-shadow: 0 22px 58px rgba(47, 42, 37, 0.1);
}

.about-gallery-large {
    grid-row: 1 / 3;
}

.about-cta-section {
    padding: 40px 0 96px;
    background: #fffaf5;
}

.about-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 44px;
    border-radius: 34px;
    background: #241f1a;
    color: #fff;
    box-shadow: 0 30px 90px rgba(47, 42, 37, 0.2);
}

.about-cta-card h2 {
    color: #fff;
}

.about-cta-card p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.74);
}

.about-secondary-btn {
    flex: 0 0 auto;
    background: #f5f1ec;
    color: #241f1a;
}

.about-secondary-btn:hover,
.about-secondary-btn:focus {
    color: #241f1a;
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .about-section {
        padding: 76px 0;
    }

    .about-intro-row,
    .about-story-row,
    .about-production-row,
    .about-process-row {
        display: block;
    }

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

    .about-story-content {
        padding-left: 0;
        margin-top: 42px;
    }

    .about-image-card {
        min-height: 440px;
    }

    .about-process-list {
        margin-top: 36px;
    }

    .about-production-row .col-md-6+.col-md-6 {
        margin-top: 36px;
    }

    .about-cta-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .about-page .about-hero h1 {
        font-size: 42px;
    }

    .about-hero-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .about-section {
        padding: 62px 0;
    }

    .about-intro-section h2,
    .about-story-content h2,
    .about-process-section h2,
    .about-production-section h2,
    .about-cta-card h2,
    .about-section-heading h2 {
        font-size: 32px;
    }

    .about-image-card {
        min-height: 340px;
        border-radius: 24px;
    }

    .about-value-card,
    .about-service-card,
    .about-process-item,
    .about-cta-card {
        border-radius: 22px;
    }

    .about-process-item {
        flex-direction: column;
        gap: 12px;
    }

    .about-mini-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: 280px 220px 220px;
    }

    .about-gallery-large {
        grid-row: auto;
    }

    .about-primary-btn,
    .about-secondary-btn {
        width: 100%;
        text-align: center;
    }

    .about-cta-card {
        padding: 30px 24px;
    }
}

/* Home Page Premium Improvements */

.home-page {
    background: #fffaf5;
}

.home-page .home-hero {
    position: relative;
    overflow: hidden;
}

.home-page .home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 72% 42%, rgba(255, 255, 255, 0.18), transparent 32%),
        linear-gradient(90deg, rgba(24, 19, 15, 0.82) 0%, rgba(24, 19, 15, 0.48) 45%, rgba(24, 19, 15, 0.22) 100%);
    pointer-events: none;
}

.home-page .home-hero .container {
    position: relative;
    z-index: 2;
}

.home-hero-content {
    max-width: 840px;
    color: #fff;
}

.home-eyebrow,
.home-section-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c7ad91;
}

.home-hero-content h1 {
    margin: 0;
    font-size: clamp(44px, 6.8vw, 92px);
    line-height: 0.94;
    letter-spacing: -0.06em;
    color: #fff;
}

.home-hero-content p {
    max-width: 620px;
    margin: 26px 0 0;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.82);
}

.home-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.home-primary-btn,
.home-secondary-btn,
.home-cta-btn,
.home-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 15px 26px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.home-primary-btn {
    background: #f5f1ec;
    color: #241f1a;
}

.home-secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
}

.home-primary-btn:hover,
.home-primary-btn:focus,
.home-secondary-btn:hover,
.home-secondary-btn:focus,
.home-cta-btn:hover,
.home-cta-btn:focus,
.home-link-btn:hover,
.home-link-btn:focus {
    text-decoration: none;
    transform: translateY(-2px);
}

.home-primary-btn:hover,
.home-primary-btn:focus {
    color: #241f1a;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.home-secondary-btn:hover,
.home-secondary-btn:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.home-section {
    padding: 96px 0;
}

.home-intro-section,
.home-collections-section {
    background: #fffaf5;
}

.home-intro-row,
.home-story-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.home-intro-section h2,
.home-section-heading h2,
.home-story-content h2,
.home-cta-card h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.06;
    letter-spacing: -0.045em;
    color: #241f1a;
}

.home-intro-section p,
.home-section-heading p,
.home-story-content p,
.home-cta-card p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.9;
    color: #6f665d;
}

.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 54px;
}

.home-stat-card {
    padding: 28px;
    border: 1px solid rgba(47, 42, 37, 0.1);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 22px 58px rgba(47, 42, 37, 0.06);
}

.home-stat-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 34px;
    line-height: 1;
    color: #9b8066;
}

.home-stat-card span {
    display: block;
    font-size: 16px;
    line-height: 1.6;
    color: #2f2a25;
}

.home-services-section,
.home-story-section {
    background: linear-gradient(135deg, #f5f1ec 0%, #eee5da 100%);
}

.home-section-heading {
    max-width: 780px;
    margin: 0 auto 50px;
}

.home-service-card {
    min-height: 292px;
    margin-bottom: 28px;
    padding: 30px 24px;
    border: 1px solid rgba(47, 42, 37, 0.1);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 22px 58px rgba(47, 42, 37, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(47, 42, 37, 0.11);
}

.home-service-card .icon {
    margin-bottom: 24px;
    font-size: 42px;
    color: #9b8066;
}

.home-service-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 800;
    color: #241f1a;
}

.home-service-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #6f665d;
}

.home-collection-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 280px;
    gap: 20px;
}

.home-collection-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    color: #fff;
    box-shadow: 0 24px 70px rgba(47, 42, 37, 0.12);
}

.home-collection-large {
    grid-column: span 2;
    grid-row: span 2;
}

.home-collection-image {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transition: transform 0.5s ease;
}

.home-collection-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 16, 13, 0.12) 0%, rgba(20, 16, 13, 0.72) 100%);
}

.home-collection-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 28px;
}

.home-collection-overlay span {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.home-collection-overlay h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
}

.home-collection-overlay p {
    max-width: 440px;
    margin: 12px 0 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.home-collection-card:hover,
.home-collection-card:focus {
    color: #fff;
    text-decoration: none;
}

.home-collection-card:hover .home-collection-image {
    transform: scale(1.07);
}

.home-story-image {
    min-height: 560px;
    border-radius: 34px;
    background-position: center;
    background-size: cover;
    box-shadow: 0 28px 80px rgba(47, 42, 37, 0.16);
}

.home-story-content {
    padding-left: 46px;
}

.home-check-list {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.home-check-list li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 34px;
    font-size: 15px;
    line-height: 1.7;
    color: #2f2a25;
}

.home-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #241f1a;
    color: #fff;
    font-size: 12px;
    line-height: 22px;
    text-align: center;
}

.home-link-btn {
    margin-top: 22px;
    background: #241f1a;
    color: #fff;
}

.home-link-btn:hover,
.home-link-btn:focus {
    color: #fff;
    background: #3a332c;
}

.home-cta-section {
    padding: 40px 0 96px;
    background: #fffaf5;
}

.home-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 44px;
    border-radius: 34px;
    background: #241f1a;
    color: #fff;
    box-shadow: 0 30px 90px rgba(47, 42, 37, 0.2);
}

.home-cta-card h2 {
    color: #fff;
}

.home-cta-card p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.74);
}

.home-cta-btn {
    flex: 0 0 auto;
    background: #f5f1ec;
    color: #241f1a;
}

.home-cta-btn:hover,
.home-cta-btn:focus {
    color: #241f1a;
}

@media (max-width: 991px) {
    .home-section {
        padding: 76px 0;
    }

    .home-hero-content {
        max-width: 720px;
        text-align: center;
        margin: 0 auto;
    }

    .home-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero-actions {
        justify-content: center;
    }

    .home-intro-row,
    .home-story-row {
        display: block;
    }

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

    .home-collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 260px;
    }

    .home-collection-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .home-story-content {
        padding-left: 0;
        margin-top: 42px;
    }

    .home-story-image {
        min-height: 440px;
    }

    .home-cta-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .home-hero-content h1 {
        font-size: 42px;
    }

    .home-hero-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .home-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home-primary-btn,
    .home-secondary-btn,
    .home-cta-btn,
    .home-link-btn {
        width: 100%;
        text-align: center;
    }

    .home-section {
        padding: 62px 0;
    }

    .home-intro-section h2,
    .home-section-heading h2,
    .home-story-content h2,
    .home-cta-card h2 {
        font-size: 32px;
    }

    .home-collection-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .home-collection-large {
        grid-column: auto;
    }

    .home-collection-overlay {
        padding: 22px;
    }

    .home-collection-overlay h3 {
        font-size: 22px;
    }

    .home-story-image {
        min-height: 340px;
        border-radius: 24px;
    }

    .home-stat-card,
    .home-service-card,
    .home-collection-card,
    .home-cta-card {
        border-radius: 22px;
    }

    .home-cta-card {
        padding: 30px 24px;
    }
}

/* Blog Page Premium Improvements */

.blog-list-page,
.blog-detail-page {
    background: #fffaf5;
}

.blog-list-hero,
.blog-detail-hero {
    position: relative;
    overflow: hidden;
}

.blog-list-hero::after,
.blog-detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(20, 16, 13, 0.22) 0%, rgba(20, 16, 13, 0.68) 100%);
    pointer-events: none;
}

.blog-list-hero .container,
.blog-detail-hero .container {
    position: relative;
    z-index: 2;
}

.blog-eyebrow,
.blog-section-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c7ad91;
}

.blog-list-hero h1,
.blog-detail-hero h1 {
    max-width: 920px;
    margin: 0 auto;
    font-size: clamp(42px, 6vw, 84px);
    line-height: 0.95;
    letter-spacing: -0.055em;
    color: #fff;
}

.blog-hero-text {
    max-width: 720px;
    margin: 24px auto 0;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.84);
}

.blog-meta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.blog-meta-row span {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.08);
}

.blog-list-section,
.blog-article-wrap {
    padding: 96px 0;
    background: #fffaf5;
}

.blog-section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
}

.blog-section-heading h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.06;
    letter-spacing: -0.045em;
    color: #241f1a;
}

.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
    border-radius: 28px;
    background: #fff;
    color: #241f1a;
    text-decoration: none;
    box-shadow: 0 24px 70px rgba(47, 42, 37, 0.09);
    border: 1px solid rgba(47, 42, 37, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card-large {
    grid-column: span 2;
}

.blog-card:hover,
.blog-card:focus {
    color: #241f1a;
    text-decoration: none;
    transform: translateY(-6px);
    box-shadow: 0 32px 86px rgba(47, 42, 37, 0.14);
}

.blog-card-image {
    min-height: 260px;
    background-position: center;
    background-size: cover;
}

.blog-card-large .blog-card-image {
    min-height: 360px;
}

.blog-card-content {
    padding: 28px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.blog-card-meta span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9b8066;
}

.blog-card h3 {
    margin: 0 0 14px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.18;
    color: #241f1a;
}

.blog-card p {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.8;
    color: #6f665d;
}

.blog-card strong {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #241f1a;
}

.blog-pagination-section {
    padding: 0 0 96px;
    background: #fffaf5;
}

.blog-pagination {
    display: inline-flex;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: #efe5da;
}

.blog-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #241f1a;
    font-weight: 900;
    text-decoration: none;
}

.blog-page-btn:hover,
.blog-page-btn:focus,
.blog-page-btn.active {
    background: #241f1a;
    color: #fff;
    text-decoration: none;
}

.blog-article-card {
    padding: 46px;
    border-radius: 34px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(47, 42, 37, 0.09);
    border: 1px solid rgba(47, 42, 37, 0.08);
}

.blog-lead {
    margin: 0 0 34px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(47, 42, 37, 0.1);
    font-size: 20px;
    line-height: 1.85;
    color: #4f453d;
}

.blog-article-section {
    margin-top: 38px;
}

.blog-article-section span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #efe5da;
    color: #7d6751;
    font-weight: 900;
}

.blog-article-section h2 {
    margin: 0 0 16px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.035em;
    color: #241f1a;
}

.blog-article-section p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.95;
    color: #6f665d;
}

.blog-detail-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.blog-back-btn,
.blog-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}

.blog-back-btn {
    background: #241f1a;
    color: #fff;
}

.blog-whatsapp-btn {
    border: 1px solid rgba(47, 42, 37, 0.14);
    background: #fff;
    color: #241f1a;
}

.blog-back-btn:hover,
.blog-back-btn:focus {
    color: #fff;
    text-decoration: none;
}

.blog-whatsapp-btn:hover,
.blog-whatsapp-btn:focus {
    color: #241f1a;
    text-decoration: none;
}

.blog-related-section {
    padding-top: 96px;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.blog-related-card {
    overflow: hidden;
    border-radius: 26px;
    background: #fff;
    color: #241f1a;
    text-decoration: none;
    box-shadow: 0 22px 58px rgba(47, 42, 37, 0.08);
    border: 1px solid rgba(47, 42, 37, 0.08);
}

.blog-related-card:hover,
.blog-related-card:focus {
    color: #241f1a;
    text-decoration: none;
}

.blog-related-image {
    min-height: 190px;
    background-position: center;
    background-size: cover;
}

.blog-related-card div:last-child {
    padding: 22px;
}

.blog-related-card span {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9b8066;
}

.blog-related-card h3 {
    margin: 0;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.28;
    color: #241f1a;
}

@media (max-width: 991px) {

    .blog-list-section,
    .blog-article-wrap {
        padding: 76px 0;
    }

    .blog-card-grid,
    .blog-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-card-large {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {

    .blog-list-hero h1,
    .blog-detail-hero h1 {
        font-size: 42px;
    }

    .blog-hero-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .blog-list-section,
    .blog-article-wrap {
        padding: 62px 0;
    }

    .blog-card-grid,
    .blog-related-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-large {
        grid-column: auto;
    }

    .blog-card-image,
    .blog-card-large .blog-card-image {
        min-height: 240px;
    }

    .blog-card,
    .blog-article-card,
    .blog-related-card {
        border-radius: 22px;
    }

    .blog-card-content,
    .blog-article-card {
        padding: 26px;
    }

    .blog-lead {
        font-size: 17px;
    }

    .blog-detail-actions {
        flex-direction: column;
    }

    .blog-back-btn,
    .blog-whatsapp-btn {
        width: 100%;
        text-align: center;
    }

    .blog-related-section {
        padding-top: 62px;
    }
}

/* Category Pages Premium Improvements */

.category-page {
    background: #fffaf5;
}

.category-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.category-hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
}

.category-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 45%, rgba(255, 255, 255, 0.16), transparent 34%),
        linear-gradient(90deg, rgba(24, 19, 15, 0.86) 0%, rgba(24, 19, 15, 0.54) 52%, rgba(24, 19, 15, 0.24) 100%);
    pointer-events: none;
}

.category-hero .container {
    position: relative;
    z-index: 2;
}

.category-hero-content {
    max-width: 780px;
}

.category-eyebrow,
.category-section-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c7ad91;
}

.category-hero h1 {
    margin: 0;
    font-size: clamp(44px, 6.5vw, 88px);
    line-height: 0.96;
    letter-spacing: -0.06em;
    color: #fff;
}

.category-hero p {
    max-width: 640px;
    margin: 26px 0 0;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.84);
}

.category-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.category-primary-btn,
.category-secondary-btn,
.category-info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 15px 26px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.category-primary-btn {
    background: #f5f1ec;
    color: #241f1a;
}

.category-secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.category-primary-btn:hover,
.category-primary-btn:focus,
.category-secondary-btn:hover,
.category-secondary-btn:focus,
.category-info-btn:hover,
.category-info-btn:focus {
    text-decoration: none;
    transform: translateY(-2px);
}

.category-primary-btn:hover,
.category-primary-btn:focus {
    color: #241f1a;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.category-secondary-btn:hover,
.category-secondary-btn:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.category-list-section {
    padding: 96px 0;
    background: #fffaf5;
}

.category-section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.category-section-heading h2,
.category-info-card h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.06;
    letter-spacing: -0.045em;
    color: #241f1a;
}

.category-section-heading p,
.category-info-card p {
    margin: 18px 0 0;
    font-size: 16px;
    line-height: 1.9;
    color: #6f665d;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.category-card {
    overflow: hidden;
    border: 1px solid rgba(47, 42, 37, 0.1);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 22px 58px rgba(47, 42, 37, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(47, 42, 37, 0.14);
}

.category-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.category-card-link:hover,
.category-card-link:focus {
    color: inherit;
    text-decoration: none;
}

.category-card-image {
    min-height: 280px;
    background-position: center;
    background-size: cover;
    transition: transform 0.45s ease;
}

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

.category-card-content {
    padding: 24px;
}

.category-card-content span {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9b8066;
}

.category-card-content h3 {
    margin: 0 0 12px;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.18;
    color: #241f1a;
}

.category-card-content p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.8;
    color: #6f665d;
}

.category-card-content strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 11px 18px;
    border-radius: 999px;
    background: #241f1a;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.category-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 54px;
}

.category-pagination a {
    min-width: 46px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border: 1px solid rgba(47, 42, 37, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    color: #241f1a;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.category-pagination a:hover,
.category-pagination a:focus,
.category-pagination a.active {
    background: #241f1a;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.category-info-section {
    padding: 10px 0 96px;
    background: #fffaf5;
}

.category-info-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 44px;
    border-radius: 34px;
    background: #241f1a;
    color: #fff;
    box-shadow: 0 30px 90px rgba(47, 42, 37, 0.2);
}

.category-info-card h2 {
    color: #fff;
}

.category-info-card p {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.74);
}

.category-info-btn {
    flex: 0 0 auto;
    background: #f5f1ec;
    color: #241f1a;
}

.category-info-btn:hover,
.category-info-btn:focus {
    color: #241f1a;
}

.category-empty-card {
    grid-column: 1 / -1;
    padding: 34px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.76);
    text-align: center;
}

.category-empty-card a {
    display: inline-flex;
    margin-top: 18px;
    padding: 14px 22px;
    border-radius: 999px;
    background: #241f1a;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 991px) {
    .category-hero-content {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .category-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .category-hero-actions {
        justify-content: center;
    }

    .category-list-section {
        padding: 76px 0;
    }

    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-info-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .category-hero {
        min-height: 72vh;
    }

    .category-hero h1 {
        font-size: 42px;
    }

    .category-hero p {
        font-size: 15px;
        line-height: 1.8;
    }

    .category-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .category-primary-btn,
    .category-secondary-btn,
    .category-info-btn {
        width: 100%;
        text-align: center;
    }

    .category-list-section {
        padding: 62px 0;
    }

    .category-section-heading h2,
    .category-info-card h2 {
        font-size: 32px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        border-radius: 22px;
    }

    .category-card-image {
        min-height: 250px;
    }

    .category-info-card {
        padding: 30px 24px;
        border-radius: 22px;
    }
}
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@500;600;700;800&display=swap");

body {
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

h1,
h2,
h3,
.hero h1,
.home-hero-content h1,
.about-page h1,
.category-hero h1,
.product-description h1,
.footer-brand h2 {
    font-family: "Playfair Display", Georgia, serif;
    letter-spacing: -0.04em;
}

p,
a,
span,
li,
button,
input,
textarea {
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

.home-eyebrow,
.about-eyebrow,
.category-eyebrow,
.home-section-label,
.about-section-label,
.category-section-label,
.nav-container:after,
.nav-container .copyright {
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.08em;
}
/* Garipoğlu Mobilya Font System */

body {
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif !important;
    font-weight: 400;
    color: #241f1a;
}

p,
a,
span,
li,
button,
input,
textarea,
label,
strong,
small {
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero h1,
.hero h2,
.hero h3,
.home-hero-content h1,
.home-intro-section h2,
.home-section-heading h2,
.home-story-content h2,
.home-cta-card h2,
.about-page h1,
.about-page h2,
.about-page h3,
.about-hero h1,
.about-intro-section h2,
.about-story-content h2,
.about-process-section h2,
.about-production-section h2,
.about-cta-card h2,
.category-hero h1,
.category-section-heading h2,
.category-info-card h2,
.product-description h1,
.footer-brand h2 {
    font-family: "Playfair Display", Georgia, serif !important;
    font-weight: 700;
    letter-spacing: -0.045em;
}

.nav-container .nav>li>a,
.footer-card h3,
.home-service-card h3,
.about-service-card h3,
.category-card-content h3,
.spec-row span,
.product-description .nav-tabs>li>a,
.home-eyebrow,
.about-eyebrow,
.category-eyebrow,
.home-section-label,
.about-section-label,
.category-section-label,
.order-eyebrow {
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif !important;
}

.nav-container::after,
.nav-container .copyright,
.footer-bottom p,
.category-card-content p,
.product-description>p,
.home-hero-content p,
.about-hero-text {
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif !important;
    letter-spacing: normal;
}

.home-hero-content h1,
.about-page .about-hero h1,
.category-hero h1 {
    font-weight: 700;
    letter-spacing: -0.055em;
}

.footer-brand h2 {
    font-weight: 700;
}

.btn,
.home-primary-btn,
.home-secondary-btn,
.home-cta-btn,
.about-primary-btn,
.about-secondary-btn,
.category-primary-btn,
.category-secondary-btn,
.category-info-btn,
.product-submit-btn,
.product-whatsapp-btn {
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif !important;
    font-weight: 800;
    letter-spacing: 0.06em;
}