:root {
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-800: #292524;
    --stone-900: #1c1917;
    --accent-gold: #D4AF37;
    --white: #ffffff;
    --black: #000000;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--stone-50);
    color: var(--stone-800);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Global Link Styles - No Underlines */
a {
    text-decoration: none;
    color: inherit;
}

a:hover,
a:focus,
a:active,
a:visited {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--stone-900);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hidden {
    display: none !important;
}

/* Hero Section */
main {
    padding-top: 0;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background-color: var(--stone-900);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--stone-900), rgba(28, 25, 23, 0.4), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 1.5rem;
    max-width: 42rem;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease;
}

.hero-divider .line {
    height: 1px;
    width: 2rem;
    background-color: var(--accent-gold);
}

.hero-divider .text {
    color: var(--accent-gold);
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: white;
    animation: slideUp 1s ease;
}

.hero h1 .italic {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: white;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: white;
    line-height: 1.6;
    animation: slideUp 1s ease 0.1s backwards;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

.btn-outline {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: all 0.3s;
    animation: fadeIn 1s ease 0.2s backwards;
}

.btn-outline:hover {
    background: white;
    color: var(--stone-900);
}

/* Features */
.features {
    background: radial-gradient(circle at top left, #fbfaf6 0, var(--stone-50) 40%, #f6f6f4 100%);
    padding: 3rem 0 4.5rem;
    border-bottom: 1px solid var(--stone-200);
}

.features-header {
    text-align: center;
    margin-bottom: 2.75rem;
}

.features-title-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
}

.features-title-line {
    width: 2.25rem;
    height: 1px;
    background-color: var(--accent-gold);
}

.features-header .subtitle {
    letter-spacing: 0.16em;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
    }
}

.feature-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 1.1rem;
    border: 1px solid var(--stone-200);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

@media (min-width: 1024px) {
    .feature-item {
        align-items: center;
        text-align: center;
    }
}

.feature-item::before {
    content: "";
    position: absolute;
    inset: 0.1rem;
    border-radius: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-left: 1px solid rgba(212, 175, 55, 0.12);
    pointer-events: none;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.98);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.9), #f6f4ef);
    border: 1px solid var(--stone-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--stone-400);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    transition: all 0.5s ease;
}

.feature-icon i {
    font-size: 1.1rem;
}

.feature-item:hover .feature-icon {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(212, 175, 55, 0.18);
}

.feature-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--stone-500);
    line-height: 1.6;
    max-width: 19rem;
}

/* Featured Collection */
.featured-collection {
    padding: 3.5rem 1.5rem 2rem;
    border-top: 1px solid var(--stone-200);
}

.section-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
    gap: 1rem;
}

@media (min-width: 768px) {
    .section-header {
        flex-direction: row;
    }
}

.header-text {
    width: 100%;
    max-width: 36rem;
}

.section-header .subtitle {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.subtitle {
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.1rem;
    margin-bottom: 0.75rem;
    position: relative;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.6rem;
    }
}

.section-header h2::after {
    content: "";
    display: block;
    width: 2.5rem;
    height: 1px;
    background: linear-gradient(to right, var(--accent-gold), transparent);
    margin-top: 0.6rem;
}

.section-header p {
    color: var(--stone-500);
    font-weight: 300;
    font-size: 1.125rem;
}

.link-btn {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--stone-900);
    border-bottom: 1px solid var(--stone-300);
    padding-bottom: 0.25rem;
    transition: all 0.3s;
}

.link-btn:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.link-btn svg {
    width: 14px;
    height: 14px;
    margin-left: 0.5rem;
}

.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .desktop-only {
        display: flex;
    }
}

.mobile-only {
    display: block;
}

@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.25rem;
}

@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-grid.grid-2x2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .product-grid.grid-4-cols {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Home Collection Categories - image tiles */
.collection-tile {
    position: relative;
    cursor: pointer;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.15);
    background-color: var(--stone-200);
    aspect-ratio: 3 / 2;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    isolation: isolate;
    transition: all 0.3s ease;
}

.collection-tile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    filter: grayscale(10%) contrast(1.01) saturate(1.02);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.collection-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 55%);
    mix-blend-mode: soft-light;
    pointer-events: none;
    z-index: 1;
}

.collection-tile-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.4), transparent 65%);
    color: #ffffff;
    z-index: 2;
    transition: background 0.3s ease;
}

.collection-tile-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(248, 250, 252, 0.9);
    margin-bottom: 0.35rem;
    text-shadow: 0 1px 3px rgba(15, 23, 42, 0.9);
}

.collection-tile-title {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(15, 23, 42, 0.8);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.collection-tile-overlay p {
    font-size: 0.75rem;
    line-height: 1.5;
    color: rgba(249, 250, 251, 0.85);
    max-width: 20rem;
    text-shadow: 0 1px 2px rgba(15, 23, 42, 0.7);
    display: none; /* Minimalist için açıklama metnini gizle */
}

.collection-tile:hover {
    border-color: rgba(148, 163, 184, 0.3);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.12);
    transform: translateY(-2px);
}

.collection-tile:hover .collection-tile-image {
    transform: scale(1.03);
    filter: grayscale(0%) contrast(1.02) saturate(1.05);
}

.collection-tile:hover .collection-tile-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.5), transparent 65%);
}

/* Product Card */
.product-card {
    cursor: pointer;
    background: white;
}

.card-image-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background-color: var(--stone-100);
}

.card-meta {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    left: auto;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.6);
}

.card-meta-category {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(249, 250, 251, 0.96);
    font-weight: 500;
}

.card-meta-code {
    font-size: 0.62rem;
    color: rgba(209, 213, 219, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.card-meta-index {
    font-size: 0.65rem;
    color: rgba(209, 213, 219, 0.9);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s;
}

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

.new-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone-900);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.6));
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.25rem;
}

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

.overlay-icon {
    width: 2.4rem;
    height: 2.4rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
    transform: scale(0.75);
    transition: transform 0.3s;
}

.product-card:hover .overlay-icon {
    transform: scale(1);
}

.card-caption {
    margin-top: 0.35rem;
    text-align: center;
}

.card-caption-code {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--stone-500);
}

.card-content {
    text-align: center;
    padding: 0 0.5rem;
}

.card-category {
    font-size: 0.625rem;
    color: var(--stone-500);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    display: block;
}

.card-title {
    font-size: 1.125rem;
    font-family: 'Playfair Display', serif;
    color: var(--stone-900);
    transition: color 0.3s;
}

.product-card:hover .card-title {
    color: var(--accent-gold);
}

.card-divider {
    width: 2rem;
    height: 1px;
    background-color: var(--stone-300);
    margin: 0.75rem auto 0;
    transition: width 0.3s;
}

.product-card:hover .card-divider {
    width: 4rem;
}

.btn-primary {
    background-color: var(--stone-900);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--accent-gold);
}

/* About Section (Home) */
.about-section {
    background: linear-gradient(to bottom, #ffffff, #f5f4f1);
    padding: 5rem 0 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image {
    order: 2;
    position: relative;
}

@media (min-width: 1024px) {
    .about-image {
        order: 1;
    }
}

.border-frame {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 100%;
    height: 100%;
    border: 1px solid var(--stone-200);
    z-index: 0;
    display: none;
}

@media (min-width: 768px) {
    .border-frame {
        display: block;
    }
}

.about-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    position: relative;
    z-index: 10;
    box-shadow: 0 18px 45px -14px rgba(15, 23, 42, 0.24);
    filter: saturate(1.08) contrast(1.03);
    transition: transform 0.7s, filter 0.7s;
}

.about-image img:hover {
    filter: saturate(1.14) contrast(1.06);
    transform: translateY(-3px);
}

.about-content {
    order: 1;
}

@media (min-width: 1024px) {
    .about-content {
        order: 2;
        padding-left: 3rem;
    }
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.75rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .about-content h2 {
        font-size: 2.7rem;
    }
}

.description {
    color: var(--stone-600);
    margin-bottom: 2.25rem;
    line-height: 1.8;
    font-weight: 300;
    font-size: 1.125rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .about-features {
        grid-template-columns: 1fr 1fr;
    }
}

.af-item {
    padding: 1.5rem;
    background: var(--stone-50);
    border: 1px solid var(--stone-100);
    transition: border-color 0.3s;
}

.af-item:hover {
    border-color: var(--stone-300);
}

.af-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.af-item p {
    font-size: 0.75rem;
    color: var(--stone-500);
    line-height: 1.6;
}

/* Generic Page Section */
.page-section {
    min-height: 100vh;
    background-color: var(--stone-50);
}

/* About Page */
.about-page-hero {
    position: relative;
    padding-top: 3.2rem;
    padding-bottom: 1.8rem;
    background: radial-gradient(circle at top left, #111827, #020617);
    color: #f9fafb;
    overflow: hidden;
}

@media (max-width: 639px) {
    .about-page-hero {
        padding-top: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .about-page-hero-content h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .about-page-hero-content p {
        font-size: 0.9rem !important;
    }
}

.about-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 0%, rgba(212, 175, 55, 0.22), transparent 55%),
        radial-gradient(circle at 80% 100%, rgba(148, 163, 184, 0.35), transparent 55%);
    opacity: 0.8;
}

.about-page-hero-inner {
    position: relative;
    z-index: 1;
    padding: 3rem 0 2.5rem;
}

.about-page-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .about-page-hero-grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        align-items: center;
        gap: 3rem;
    }
}

.about-page-hero-content {
    max-width: 40rem;
}

.about-page-hero-content h1 {
    font-size: 1.7rem;
    line-height: 1.15;
    margin-bottom: 0.6rem;
    color: #f9fafb;
}

@media (min-width: 768px) {
    .about-page-hero-content h1 {
        font-size: 2.2rem;
    }
}

.about-page-hero-content p {
    color: rgba(229, 231, 235, 0.86);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 34rem;
}

.about-page-hero-aside {
    display: none;
}

@media (min-width: 768px) {
    .about-page-hero-aside {
        display: flex;
        justify-content: flex-end;
    }
}

.about-page-hero-card {
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.84));
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
    max-width: 20rem;
}

.about-page-hero-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: #f9fafb;
}

.about-page-hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-page-hero-card li {
    font-size: 0.8rem;
    color: rgba(209, 213, 219, 0.9);
    line-height: 1.5;
    position: relative;
    padding-left: 0.85rem;
}

.about-page-hero-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.24rem;
    height: 0.24rem;
    border-radius: 999px;
    background-color: var(--accent-gold);
}

.about-page-main {
    padding: 4rem 0 3rem;
    background: linear-gradient(to bottom, #f5f4f1, #ffffff);
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (max-width: 639px) {
    .about-page-grid {
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .about-page-grid {
        grid-template-columns: 1.1fr 1.1fr;
        gap: 3.5rem;
        align-items: flex-start;
    }
}

.about-page-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.about-page-block p {
    color: var(--stone-600);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.about-page-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-page-list-item {
    display: flex;
    gap: 1rem;
}

.about-page-list-item i {
    font-size: 1.25rem;
    color: var(--accent-gold);
    margin-top: 0.2rem;
}

.about-page-list-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.about-page-list-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.about-page-highlight {
    padding: 2rem;
    border-radius: 1.5rem;
    background: radial-gradient(circle at top left, #f9fafb, #e5e7eb);
    border: 1px solid var(--stone-200);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.about-page-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .about-page-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.about-stat {
    padding: 1.25rem 1rem;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.about-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--stone-500);
    margin-bottom: 0.35rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-stat-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--stone-900);
}

.about-stat-note {
    display: block;
    font-size: 0.8rem;
    color: var(--stone-500);
    margin-top: 0.25rem;
}

.about-values {
    padding: 3rem 0 4.5rem;
    background-color: #ffffff;
    border-top: 1px solid var(--stone-200);
}

.about-values-header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 3rem;
}

.about-values-header h2 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
}

.about-values-header p {
    color: var(--stone-600);
    font-size: 0.98rem;
    line-height: 1.8;
}

.about-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 768px) {
    .about-values-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.about-value-card {
    padding: 1.75rem 1.5rem;
    background: var(--stone-50);
    border-radius: 1.25rem;
    border: 1px solid var(--stone-200);
}

.about-value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.about-value-card p {
    font-size: 0.9rem;
    color: var(--stone-600);
    line-height: 1.7;
}

/* Contact Page */
.contact-hero {
    position: relative;
    padding-top: 3.2rem;
    padding-bottom: 1.8rem;
    background: radial-gradient(circle at top left, #111827, #020617);
    color: #f9fafb;
    overflow: hidden;
}

@media (max-width: 639px) {
    .contact-hero {
        padding-top: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .contact-hero-content h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .contact-hero-content p {
        font-size: 0.9rem !important;
    }
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 0%, rgba(212, 175, 55, 0.18), transparent 55%),
        radial-gradient(circle at 85% 100%, rgba(148, 163, 184, 0.3), transparent 55%);
    opacity: 0.8;
}

.contact-hero-inner {
    position: relative;
    z-index: 1;
    padding: 2.5rem 0 2rem;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-hero-grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        align-items: center;
        gap: 3rem;
    }
}

.contact-hero-content {
    max-width: 36rem;
}

.contact-hero-content h1 {
    font-size: 1.7rem;
    line-height: 1.15;
    margin-bottom: 0.6rem;
    color: #f9fafb;
}

@media (min-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.2rem;
    }
}

.contact-hero-content p {
    color: rgba(229, 231, 235, 0.86);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 34rem;
}

.contact-hero-aside {
    display: none;
}

@media (min-width: 768px) {
    .contact-hero-aside {
        display: flex;
        justify-content: flex-end;
    }
}

.contact-hero-card {
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.84));
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
    max-width: 20rem;
}

.contact-hero-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #f9fafb;
}

.contact-hero-card p {
    font-size: 0.82rem;
    color: rgba(209, 213, 219, 0.9);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-hero-call {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background-color: #f9fafb;
    color: #111827;
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.contact-hero-call i {
    font-size: 0.9rem;
}

.contact-hero-call:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.75);
    background-color: var(--accent-gold);
    color: #111827;
}

.contact-main {
    padding: 4rem 0 4.5rem;
    background: linear-gradient(to bottom, #f5f4f1, #ffffff);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
        gap: 3.5rem;
        align-items: flex-start;
    }
}

.contact-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.contact-left p {
    color: var(--stone-600);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.contact-form {
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    border: 1px solid var(--stone-200);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
}

@media (max-width: 639px) {
    .contact-form {
        padding: 1.5rem 1.25rem;
        border-radius: 1rem;
    }
}

@media (min-width: 640px) {
    .contact-form {
        padding: 2.25rem 2rem;
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.form-field label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--stone-600);
}

.form-field input,
.form-field select,
.form-field textarea {
    border-radius: 0.75rem;
    border: 1px solid var(--stone-200);
    padding: 0.75rem 0.9rem;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    background-color: var(--stone-50);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--accent-gold);
    background-color: #ffffff;
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.25);
}

/* Only show invalid styles after form submission or when there's a validation error */
.contact-form.was-validated .form-field input:invalid:not(:focus):not(:placeholder-shown),
.contact-form.was-validated .form-field select:invalid:not(:focus),
.contact-form.was-validated .form-field textarea:invalid:not(:focus):not(:placeholder-shown),
.form-field input.input-validation-error,
.form-field select.input-validation-error,
.form-field textarea.input-validation-error {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.contact-form.was-validated .form-field input:invalid:focus,
.contact-form.was-validated .form-field select:invalid:focus,
.contact-form.was-validated .form-field textarea:invalid:focus,
.form-field input.input-validation-error:focus,
.form-field select.input-validation-error:focus,
.form-field textarea.input-validation-error:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 1px rgba(220, 53, 69, 0.25);
}

/* Validation error messages - hidden by default, shown via JavaScript when they have content */
.field-validation-error {
    display: none;
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.4rem;
    line-height: 1.4;
    padding-left: 0.5rem;
    position: relative;
}

/* Show validation error if it has any text content */
.field-validation-error:not(:empty) {
    display: block;
}

.field-validation-error::before {
    content: "⚠";
    display: inline-block;
    margin-right: 0.3rem;
    font-size: 0.85rem;
}

.field-validation-valid {
    display: none;
}

/* Only show validation summary when there are errors */
.validation-summary-errors {
    display: none;
    background-color: #fff5f5;
    border: 1px solid #fecaca;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    color: #dc3545;
    font-size: 0.875rem;
    line-height: 1.6;
}

.validation-summary-errors:not(:empty),
.validation-summary-errors ul:not(:empty) {
    display: block;
}

.validation-summary-errors ul {
    margin: 0;
    padding-left: 1.5rem;
    list-style: none;
}

.validation-summary-errors li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.25rem;
}

.validation-summary-errors li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

.validation-summary-errors li:last-child {
    margin-bottom: 0;
}

.contact-submit {
    margin-top: 0.5rem;
    display: inline-flex;
    margin-left: auto;
}

.contact-disclaimer {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--stone-500);
    line-height: 1.6;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    padding: 1.5rem 1.5rem;
    border-radius: 1.25rem;
    background-color: #ffffff;
    border: 1px solid var(--stone-200);
}

.contact-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--stone-600);
    line-height: 1.7;
}

.contact-phone-link,
.contact-email-link {
    color: var(--stone-700);
    text-decoration: none;
    border-bottom: 1px solid rgba(148, 163, 184, 0.6);
    padding-bottom: 1px;
}

.contact-phone-link:hover,
.contact-email-link:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.contact-map-links {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--stone-300);
    font-size: 0.8rem;
    text-decoration: none;
    color: var(--stone-700);
    background-color: #f9fafb;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.map-link i {
    font-size: 0.85rem;
}

.map-link:hover {
    background-color: var(--accent-gold);
    color: #111827;
    border-color: var(--accent-gold);
    transform: translateY(-1px);
}

.footer-contact-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(75, 85, 99, 0.8);
    padding-bottom: 1px;
}

.footer-contact-link:hover {
    color: #f9fafb;
    border-color: #f9fafb;
}

.contact-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background-color: #22c55e;
    color: #f9fafb;
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-whatsapp i {
    font-size: 1rem;
}

.contact-whatsapp:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(22, 163, 74, 0.5);
    background-color: #16a34a;
}

/* Catalog Page */
.catalog-hero {
    position: relative;
    padding-top: 3.2rem;
    padding-bottom: 1.8rem;
    background: radial-gradient(circle at top left, #111827, #020617);
    color: #f9fafb;
    overflow: hidden;
}

@media (max-width: 639px) {
    .catalog-hero {
        padding-top: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .catalog-hero-content h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem;
    }

    .catalog-hero-content p {
        font-size: 0.9rem !important;
    }
}

.catalog-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 0%, rgba(212, 175, 55, 0.18), transparent 55%),
        radial-gradient(circle at 85% 100%, rgba(148, 163, 184, 0.3), transparent 55%);
    opacity: 0.8;
}

.catalog-hero-inner {
    position: relative;
    z-index: 1;
    padding: 2.5rem 0 2rem;
}

.catalog-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .catalog-hero-grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        align-items: center;
        gap: 3rem;
    }
}

.catalog-hero-content {
    max-width: 36rem;
}

.catalog-hero-content h1 {
    font-size: 1.7rem;
    line-height: 1.15;
    margin-bottom: 0.6rem;
    color: #f9fafb;
}

@media (min-width: 768px) {
    .catalog-hero-content h1 {
        font-size: 2.2rem;
    }
}

.catalog-hero-content p {
    color: rgba(229, 231, 235, 0.86);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 34rem;
}

.catalog-hero-aside {
    display: none;
}

@media (min-width: 768px) {
    .catalog-hero-aside {
        display: flex;
        justify-content: flex-end;
    }
}

.catalog-hero-card {
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.84));
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
    max-width: 20rem;
}

.catalog-hero-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #f9fafb;
}

.catalog-hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.catalog-hero-card li {
    font-size: 0.82rem;
    color: rgba(209, 213, 219, 0.9);
    line-height: 1.5;
    position: relative;
    padding-left: 0.9rem;
}

.catalog-hero-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.24rem;
    height: 0.24rem;
    border-radius: 999px;
    background-color: var(--accent-gold);
}

.catalog-main {
    padding: 3.5rem 0 4.75rem;
    background: linear-gradient(to bottom, #f5f4f1, #ffffff);
}

@media (max-width: 639px) {
    .catalog-main {
        padding: 2rem 0 3rem;
    }
}

.catalog-container {
    max-width: 1440px;
    padding: 0 2.5rem;
}

@media (max-width: 639px) {
    .catalog-container {
        padding: 0 1rem;
    }
}

.catalog-shell {
    background: radial-gradient(circle at top left, #ffffff, #f8f7f4);
    border-radius: 1.5rem;
    border: 1px solid rgba(214, 211, 209, 0.8);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
    padding: 3.5rem 3rem 3.25rem;
}

@media (max-width: 639px) {
    .catalog-shell {
        padding: 2rem 1.5rem;
        border-radius: 1rem;
    }
}

@media (min-width: 768px) {
    .catalog-shell {
        padding: 3.75rem 3.5rem 3.5rem;
    }
}

.catalog-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--stone-200);
    padding-bottom: 2rem;
    gap: 1rem;
}

@media (min-width: 768px) {
    .catalog-header {
        flex-direction: row;
        align-items: flex-end;
    }
}

.catalog-header-text {
    max-width: 36rem;
}

.catalog-header h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

@media (max-width: 639px) {
    .catalog-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .catalog-header h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .catalog-header-lead {
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) {
    .catalog-header h2 {
        font-size: 2.5rem;
    }
}

.catalog-header-lead {
    margin-top: 0.5rem;
    font-size: 0.98rem;
    color: var(--stone-600);
    line-height: 1.8;
    font-weight: 300;
}

.catalog-header-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.product-count {
    color: var(--stone-500);
    font-weight: 300;
    font-size: 0.85rem;
}

/* Catalog grid layout switcher */
.layout-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background-color: rgba(248, 250, 252, 0.9);
    border: 1px solid var(--stone-200);
}

.layout-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--stone-500);
}

.layout-btn {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 1px solid var(--stone-200);
    background-color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--stone-500);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.layout-btn:hover {
    border-color: var(--stone-400);
    color: var(--stone-900);
}

.layout-btn.active {
    background-color: var(--stone-900);
    color: #ffffff;
    border-color: var(--stone-900);
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.25);
}

@media (max-width: 640px) {
    .layout-switcher {
        margin-top: 0.25rem;
    }
}

.catalog-layout {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

@media (max-width: 639px) {
    .catalog-layout {
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .catalog-layout {
        flex-direction: row;
    }
}

.sidebar {
    width: 100%;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .sidebar {
        width: 17rem;
    }
}

.sticky-content {
    position: sticky;
    top: 7rem;
}

@media (max-width: 1023px) {
    .sticky-content {
        position: static;
    }
}

.sidebar h3 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cat-btn,
.category-btn {
    width: 100%;
    text-align: left;
    padding: 0.75rem 0.5rem;
    font-size: 0.875rem;
    border: none;
    background: transparent;
    border-left: 2px solid transparent;
    color: var(--stone-500);
    transition: all 0.3s;
    cursor: pointer;
    font-family: inherit;
}

.cat-btn:hover,
.category-btn:hover {
    color: var(--stone-900);
    padding-left: 1rem;
}

.cat-btn.active,
.category-btn.active {
    border-left-color: var(--accent-gold);
    border-left-width: 3px;
    color: var(--accent-gold);
    font-weight: 600;
    padding-left: 1rem;
    background-color: rgba(212, 175, 55, 0.08);
}

.sidebar-info {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--stone-200);
}

.sidebar-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.sidebar-info p {
    font-size: 0.75rem;
    color: var(--stone-500);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.phone-btn {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--stone-900);
    text-decoration: none;
    transition: all 0.3s;
}

.phone-btn:hover {
    color: var(--accent-gold);
}

.catalog-grid-wrapper {
    flex: 1;
}

.catalog-grid-wrapper .product-grid {
    gap: 3rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Responsive overrides for catalog grid layout selections */
@media (max-width: 639px) {
    .catalog-grid-wrapper .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem !important;
    }

    .product-card {
        margin-bottom: 0;
    }
}

@media (min-width: 640px) {
    .catalog-grid-wrapper.layout-2 .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-grid-wrapper.layout-3 .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .catalog-grid-wrapper.layout-4 .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Footer */
footer {
    background: radial-gradient(circle at top left, #111827, #020617);
    color: var(--stone-400);
    padding: 3.5rem 0 0;
    margin-top: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.85);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 3.75rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    }
}

.footer-brand .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: #f9fafb;
    display: block;
    margin-bottom: 1.4rem;
    letter-spacing: 0.22em;
}

.footer-brand p {
    font-size: 0.8rem;
    line-height: 1.7;
    color: rgba(209, 213, 219, 0.78);
}

.footer-links h4,
.footer-newsletter h4 {
    color: #e5e7eb;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 1.6rem;
    font-family: 'Inter', sans-serif;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    color: rgba(156, 163, 175, 0.9);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
    color: #f9fafb;
    transform: translateX(2px);
}

.footer-newsletter p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(156, 163, 175, 0.9);
}

.newsletter-input {
    display: flex;
    border-bottom: 1px solid rgba(55, 65, 81, 0.9);
    padding-bottom: 0.5rem;
}

.newsletter-input input {
    background: transparent;
    border: none;
    color: #f9fafb;
    font-size: 0.875rem;
    width: 100%;
    outline: none;
}

.newsletter-input input::placeholder {
    color: rgba(107, 114, 128, 0.95);
}

.newsletter-input button {
    color: rgba(156, 163, 175, 0.95);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    transition: color 0.25s ease, transform 0.25s ease;
}

.newsletter-input button:hover {
    color: #fefce8;
    transform: translateX(2px);
}

.footer-bottom {
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    padding: 1.75rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(107, 114, 128, 0.9);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal button {
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(156, 163, 175, 0.9);
    cursor: pointer;
    transition: color 0.25s ease;
}

.footer-legal button:hover {
    color: #f9fafb;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: transparent;
    width: 100%;
    max-width: 1120px;
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease;
}

.legal-modal-content {
    max-width: 720px;
}

.legal-modal-inner {
    padding: 2rem 1.75rem 2.25rem;
    background-color: #ffffff;
    border-radius: 1.25rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(148, 163, 184, 0.6);
}

.legal-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.legal-modal-header h2 {
    font-size: 1.5rem;
}

.legal-modal-body {
    font-size: 0.9rem;
    color: var(--stone-700);
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

@media (min-width: 1024px) {
    .modal-content {
        max-height: 90vh;
        overflow: visible;
    }
}

.close-modal-mobile {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 20;
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    .close-modal-mobile {
        display: none;
    }
}

.modal-body {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 1024px) {
    .modal-body {
        flex-direction: row;
        height: 100%;
    }
}

.modal-images {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.96));
    border-radius: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.6);
    padding: 1.75rem 1.75rem 1.9rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .modal-images {
        width: 100%;
        height: auto;
        overflow: visible;
    }
}

.modal-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.modal-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.8);
    color: #e5e7eb;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.modal-code-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 500;
}

.modal-code-pill i {
    font-size: 0.8rem;
    color: var(--accent-gold);
}

.main-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #111827;
    cursor: zoom-in;
    border-radius: 1.25rem;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.18s ease-out, transform-origin 0.18s ease-out;
}

.zoom-hint {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.main-image-container:hover .zoom-hint {
    opacity: 1;
}

.main-image-container.zoomed {
    cursor: zoom-out;
}

.thumbnails {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.thumb-btn {
    width: 5rem;
    height: 5rem;
    flex-shrink: 0;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.thumb-btn.active {
    border-color: var(--stone-900);
}

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

.modal-info {
    padding: 2rem;
    flex: 1;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.close-modal-desktop {
    display: none;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    color: var(--stone-400);
    transition: color 0.3s;
}

@media (min-width: 1024px) {
    .close-modal-desktop {
        display: flex;
    }
}

.close-modal-desktop:hover {
    color: var(--stone-900);
}

.modal-category {
    font-size: 0.75rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.modal-info h2 {
    font-size: 2rem;
    line-height: 1.2;
}

.modal-meta {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--stone-200);
    margin-bottom: 2rem;
    font-size: 0.75rem;
    color: var(--stone-500);
}

.modal-meta i {
    margin-right: 0.5rem;
}

.modal-info h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.modal-info p {
    color: var(--stone-600);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

.specs-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.spec-item {
    background: var(--stone-50);
    padding: 1rem;
    border: 1px solid var(--stone-100);
}

.spec-label {
    display: block;
    font-size: 0.75rem;
    color: var(--stone-500);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spec-value {
    font-weight: 600;
    color: var(--stone-900);
    font-size: 0.875rem;
}

.colors-section {
    margin-bottom: 2.5rem;
}

.color-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.color-tag {
    padding: 0.5rem 1rem;
    border: 1px solid var(--stone-200);
    font-size: 0.75rem;
    color: var(--stone-600);
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.full-width {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.group-hover-move {
    transition: transform 0.3s;
}

.group:hover .group-hover-move {
    transform: translateX(4px);
}

/* Gallery Lightbox Modal */
.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.gallery-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.98));
    backdrop-filter: blur(12px);
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    z-index: 10;
}

.gallery-close {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    z-index: 30;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gallery-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-prev {
    left: 3rem;
}

.gallery-next {
    right: 3rem;
}

@media (max-width: 768px) {
    .gallery-prev {
        left: 1rem;
    }

    .gallery-next {
        right: 1rem;
    }

    .gallery-nav {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .gallery-close {
        top: 1.5rem;
        right: 1.5rem;
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.9rem;
    }
}

.gallery-main {
    width: 100%;
    max-width: 1500px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.gallery-top-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 5;
    pointer-events: none;
}

.gallery-top-bar * {
    pointer-events: auto;
}

.gallery-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gallery-category {
    padding: 0.35rem 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gallery-code {
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(248, 250, 252, 0.3);
    background: rgba(0, 0, 0, 0.75);
    color: rgba(248, 250, 252, 0.95);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gallery-counter {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.03em;
    padding: 0.3rem 0.9rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gallery-image-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
    overflow: hidden;
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
    z-index: 1;
}

.gallery-image-container:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.gallery-image-container.zoomed {
    cursor: move;
}

.gallery-image-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    display: block;
    margin: auto;
}

.gallery-zoom-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gallery-image-container:hover .gallery-zoom-hint {
    opacity: 1;
}

.gallery-image-container.zoomed .gallery-zoom-hint {
    display: none;
}

.gallery-actions {
    display: flex;
    gap: 0.75rem;
    padding: 0 2rem;
    margin-top: 0.5rem;
    position: relative;
    z-index: 5;
    pointer-events: none;
}

.gallery-actions * {
    pointer-events: auto;
}

.gallery-actions .btn-primary,
.gallery-actions .btn-outline {
    padding: 0.65rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.gallery-actions .btn-primary:hover {
    background: rgba(22, 163, 74, 0.8);
    border-color: rgba(22, 163, 74, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
    color: white;
}

.gallery-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: white;
}

.gallery-actions .btn-primary i,
.gallery-actions .btn-outline i {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .gallery-content {
        padding: 2rem 1rem;
    }

    .gallery-main {
        gap: 1.5rem;
    }

    .gallery-top-bar {
        padding: 0 0.5rem;
        margin-bottom: 0.25rem;
    }

    .gallery-image-container {
        height: 75vh;
        min-height: 400px;
        border-radius: 0.375rem;
    }

    .gallery-image-container img {
        max-height: 100%;
    }

    .gallery-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 0.5rem;
        gap: 0.65rem;
        margin-top: 0.25rem;
    }

    .gallery-actions .btn-primary,
    .gallery-actions .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 0.6rem 1.25rem;
    }

    .gallery-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .gallery-category {
        font-size: 0.6rem;
        padding: 0.3rem 0.85rem;
    }

    .gallery-counter {
        font-size: 0.75rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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