* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4a437;
    --deep-gold: #a8790a;
    --ink: #1f1a14;
    --soft: #fff8ed;
    --cream: #fffdf8;
    --card: #faf6f0;
    --line: #ede6dd;
    --muted: #6f6352;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --navbar-height: 76px;
    --gold-gradient: linear-gradient(135deg, var(--gold), var(--deep-gold));
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--ink);
    line-height: 1.6;
    background-color: var(--cream);
    overflow-x: hidden;
    padding-top: var(--navbar-height);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cinzel', serif;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: var(--navbar-height);
    padding: 0 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--deep-gold);
}

.brand-text {
    font-family: 'Noto Serif Devanagari', 'Cinzel', serif;
    display: inline-block;
    font-size: 1.16rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.25;
    color: #8d6408;
    text-shadow: none;
}

.nav-brand:hover .brand-text {
    color: #a8790a;
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.faq-section {
    padding: 30px 0 50px;
}

.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    background: #fffdf8;
    border: 1px solid rgba(141, 100, 8, 0.16);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(75, 54, 10, 0.06);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--deep-gold);
}

.faq-item[open] summary {
    background: rgba(216, 175, 75, 0.12);
    color: var(--deep-gold);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    margin: 0;
    padding: 0 16px 16px;
    color: var(--muted);
    line-height: 1.7;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 500;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    position: relative;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.nav-admin-item {
    display: flex;
    align-items: center;
}

.nav-admin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 164, 55, 0.28);
    background: rgba(255, 248, 237, 0.9);
    color: var(--deep-gold);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    opacity: 0.72;
    transition: all 0.25s ease;
}

.nav-admin-link:hover,
.nav-admin-link:focus-visible {
    opacity: 1;
    transform: translateY(-1px);
    border-color: rgba(212, 164, 55, 0.45);
    background: var(--gold-gradient);
    color: white;
    box-shadow: 0 8px 20px rgba(212, 164, 55, 0.24);
}

.lang-toggle {
    border: 1px solid var(--gold);
    background: var(--soft);
    color: var(--deep-gold);
    font-weight: 700;
    font-size: 0.82rem;
    border-radius: 999px;
    padding: 7px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-toggle:hover {
    background: var(--gold-gradient);
    color: white;
    border-color: transparent;
}

.burger {
    display: none;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: white;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.burger div {
    width: 20px;
    height: 2.5px;
    position: absolute;
    border-radius: 3px;
    background-color: var(--ink);
    margin: 0;
    transition: transform 0.28s ease, opacity 0.22s ease, background-color 0.22s ease;
}

.burger .line1 {
    transform: translateY(-6px);
}

.burger .line2 {
    transform: translateY(0);
}

.burger .line3 {
    transform: translateY(6px);
}

.burger:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 16, 12, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 98;
}

body.nav-open {
    overflow: hidden;
}

/* Buttons */
.btn {
    padding: 11px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    min-height: 44px;
    touch-action: manipulation;
}

.btn-primary {
    background: var(--gold-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(212, 164, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 164, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--soft);
    border-color: var(--deep-gold);
}

/* Hero Section */
.hero {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--soft) 0%, var(--cream) 100%);
}

.hero .container {
    position: relative;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content,
.hero-image {
    min-width: 0;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 600px;
    overflow: hidden;
    width: 100%;
}

.model-image {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

/* Trust Features */
.trust-features {
    padding: 40px 0;
    background-color: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-item {
    text-align: center;
    padding: 18px 12px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.feature-item h3 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--ink);
    font-weight: 600;
}

.feature-item p {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Featured Collections */
.featured {
    padding: 45px 0;
    background-color: var(--soft);
}

.featured h2, .about h2, .contact h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 35px;
    color: var(--ink);
    font-weight: 700;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.featured-action {
    margin-top: 22px;
    display: flex;
    justify-content: center;
}

.collection-card {
    background: white;
    padding: 25px 18px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.collection-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 12px;
    background: var(--soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
}

.collection-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--ink);
    font-weight: 600;
}

.collection-card p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Product Card Styles */
.product-image {
    width: 100%;
    height: 200px;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collection-card:hover .product-image img {
    transform: scale(1.05);
}

.product-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.product-details {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.detail-tag {
    display: inline-block;
    background-color: var(--soft);
    color: var(--ink);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid var(--gold);
    white-space: nowrap;
}

.product-rating i {
    color: var(--gold);
    font-size: 0.9rem;
}

.product-rating span {
    color: var(--muted);
    font-size: 0.8rem;
    margin-left: 4px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0;
}

/* Products Page */
.collections-header {
    padding: 52px 0 28px;
    background: linear-gradient(135deg, var(--soft) 0%, var(--cream) 100%);
}

.collections-header h1 {
    text-align: center;
    font-size: 2.35rem;
    margin-bottom: 10px;
}

.collections-header p {
    text-align: center;
    color: var(--muted);
    max-width: 740px;
    margin: 0 auto;
}

.products-feature-strip {
    padding: 22px 0 10px;
    background: var(--cream);
}

.products-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.products-feature-item {
    background: white;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px 14px;
    box-shadow: var(--shadow);
}

.products-feature-item i {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 7px;
}

.products-feature-item h3 {
    font-size: 0.96rem;
    margin-bottom: 4px;
}

.products-feature-item p {
    color: var(--muted);
    font-size: 0.82rem;
}

.products-catalog-section {
    padding: 28px 0 55px;
    background: var(--soft);
}

.catalog-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.catalog-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.catalog-filter {
    border: 1px solid var(--line);
    background: white;
    color: var(--ink);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.83rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.catalog-filter:hover,
.catalog-filter.active {
    background: var(--gold-gradient);
    color: white;
    border-color: transparent;
}

.catalog-search {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    padding: 10px 14px;
    min-width: 280px;
    font-size: 0.9rem;
}

.catalog-search:focus {
    outline: 2px solid rgba(212, 164, 55, 0.4);
    border-color: var(--gold);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.catalog-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.catalog-preview {
    border: 0;
    padding: 0;
    background: var(--cream);
    cursor: pointer;
}

.catalog-preview img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.catalog-preview {
    position: relative;
}

.catalog-body {
    padding: 12px 12px 14px;
}

.catalog-name {
    font-size: 0.97rem;
    margin-bottom: 3px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}


.catalog-meta {
    color: var(--muted);
    font-size: 0.74rem;
    margin-bottom: 8px;
}

.catalog-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 9px;
}

.catalog-tag {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--gold);
    color: var(--ink);
    background: var(--soft);
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 0.7rem;
    font-weight: 600;
}

.catalog-specs {
    color: var(--deep-gold);
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.spec-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 4px 9px;
    color: var(--ink);
    font-size: 0.74rem;
}

.spec-chip i {
    color: var(--deep-gold);
}

.catalog-desc {
    color: var(--muted);
    font-size: 0.79rem;
    line-height: 1.45;
    margin-bottom: 10px;
    min-height: 34px;
}

.catalog-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
}

.catalog-actions .btn {
    width: 100%;
    min-height: 36px;
    font-size: 0.79rem;
    padding: 8px 10px;
}

.product-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.78);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1002;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.product-modal.active {
    display: flex;
    opacity: 1;
}

.product-modal-content {
    position: relative;
    width: min(920px, 100%);
    background: white;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.3);
}

.product-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.product-modal-close:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(212, 164, 55, 0.3);
}

.product-modal-close:active {
    transform: scale(0.95);
}

.product-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: center;
}

.product-modal-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    background: var(--cream);
}

#productModalImage,
#featuredProductModalImage {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    display: block;
}

.product-modal-details h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.product-modal-price {
    color: var(--deep-gold);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.45;
}

.product-modal-desc {
    color: var(--muted);
    margin-bottom: 10px;
}

.product-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 12px;
}

.product-modal-tags .catalog-tag {
    font-size: 0.76rem;
}

.cert-pill {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--gold-gradient);
    box-shadow: 0 6px 14px rgba(168, 121, 10, 0.28);
}

.cert-pill i {
    font-size: 0.82rem;
}

.cert-pill-text {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    color: #fff;
    background: rgba(20, 16, 10, 0.9);
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 0.72rem;
    transition: all 0.2s ease;
}

.catalog-card:hover .cert-pill-text {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.cert-pill.cert-pill-modal {
    position: static;
    width: auto;
    height: auto;
    padding: 6px 10px;
    border-radius: 999px;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 600;
    margin-right: 2px;
}

.product-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.product-modal-actions .btn {
    min-width: 190px;
    justify-content: center;
    min-height: 44px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.product-modal-actions .btn:active {
    transform: scale(0.98);
}

.featured-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.featured-actions .btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 10px 12px;
    min-height: 40px;
    transition: all 0.2s ease;
}

.collection-card .featured-actions .btn i {
    margin-right: 6px;
}

.featured-actions .btn:active {
    transform: scale(0.98);
}

.product-spec-list {
    margin-top: 10px;
    margin-bottom: 8px;
}

.product-spec-list p {
    color: var(--muted);
    font-size: 0.79rem;
    line-height: 1.35;
    margin-bottom: 2px;
}

.product-spec-list strong {
    color: var(--ink);
    font-weight: 600;
}

.product-certified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(168, 121, 10, 0.12);
    color: var(--deep-gold);
    font-weight: 600;
}

.product-certified-badge i {
    color: var(--deep-gold);
}

.featured-product-btn {
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    width: 100%;
    transition: transform 0.2s ease;
}

.featured-product-btn:hover {
    transform: scale(1.02);
}

.featured-product-btn:active {
    transform: scale(0.98);
}


/* Gold/Silver Rate Section */
.gold-rate-section {
    padding: 45px 0;
    background:
        radial-gradient(circle at top left, rgba(212, 164, 55, 0.14), transparent 30%),
        linear-gradient(135deg, var(--cream) 0%, var(--soft) 100%);
}

.gold-rate-section h2,
.gallery-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 14px;
    color: var(--ink);
    font-weight: 700;
}

.gold-rate-heading {
    text-align: center;
    margin-bottom: 22px;
}

.gold-rate-subtitle {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.rate-showcase-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 242, 0.98));
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 22px;
    border: 1px solid var(--line);
}

.rate-showcase-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.rate-day-label {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rate-day-value {
    display: block;
    font-size: 1.15rem;
    color: var(--ink);
}

.rate-live-pill {
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(212, 164, 55, 0.12);
    color: var(--deep-gold);
    font-size: 0.82rem;
    font-weight: 700;
}

.rate-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.rate-showcase-item {
    border-radius: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 12px 24px rgba(31, 26, 20, 0.06);
}

.rate-gold-item {
    background: linear-gradient(180deg, rgba(255, 248, 237, 0.98), rgba(255, 255, 255, 1));
}

.rate-summary-label {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    margin-bottom: 8px;
}

.rate-summary-value {
    display: block;
    color: var(--deep-gold);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
}

.rate-summary-note {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
    margin-top: 2px;
}

.rate-showcase-footer {
    margin-top: 16px;
}

.rate-source {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.85rem;
}

/* Gallery Section */
.gallery-section {
    padding: 45px 0;
    background-color: var(--soft);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.gallery-item {
    border: 0;
    padding: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gallery-video-item {
    position: relative;
}

.gallery-video-item video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.gallery-video-badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.76);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal-content {
    position: relative;
    max-width: 860px;
    width: 100%;
    background: white;
    border-radius: 14px;
    padding: 12px 12px 14px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}

.gallery-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: white;
    box-shadow: 0 6px 16px rgba(168, 121, 10, 0.35);
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 2;
}

.gallery-close:hover {
    transform: scale(1.08) rotate(6deg);
    box-shadow: 0 8px 20px rgba(168, 121, 10, 0.45);
}

#galleryModalImage {
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
    border-radius: 10px;
    background: var(--cream);
}

#galleryModalVideo {
    width: 100%;
    height: min(72vh, 520px);
    border: 0;
    border-radius: 10px;
    background: #000;
    display: none;
    position: relative;
    z-index: 1;
}

#galleryModalCaption {
    text-align: center;
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.95rem;
}



/* About Section */
.about {
    padding: 45px 0;
    background-color: var(--cream);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-features {
    list-style: none;
}

.about-features li {
    padding: 10px 0;
    color: var(--ink);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.about-features i {
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Contact Section */
.contact {
    padding: 45px 0;
    background-color: var(--soft);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-item {
    display: flex;
    gap: 15px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--gold);
    min-width: 35px;
    text-align: center;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 3px;
    color: var(--ink);
    font-weight: 600;
}

.info-item p {
    color: var(--muted);
    font-size: 0.9rem;
}

.info-item a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--deep-gold);
}

.contact-map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
    min-height: 300px;
}

.contact-map iframe {
    border: none;
    width: 100%;
    height: 100%;
}

.map-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.map-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: var(--ink);
    color: var(--cream);
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.footer-section h5 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--gold);
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-credit {
    margin-top: 6px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-credit a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25D366, #1DA851);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulseWhatsApp 2.2s infinite;
    z-index: 99;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-hint {
    position: absolute;
    right: 70px;
    background: var(--gold);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.floating-whatsapp:hover .whatsapp-hint {
    opacity: 1;
}

.show-hint .whatsapp-hint {
    opacity: 1;
}

@keyframes pulseWhatsApp {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.8);
    }
}

/* Mobile Responsive */
/* Large Desktop (1440px+) - Default */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-image {
    max-height: 600px;
}

/* Medium-Large Laptop/Desktop (1024px - 1440px) */
@media (max-width: 1440px) {
    .hero-wrapper {
        grid-template-columns: 1.05fr 1fr;
        gap: 45px;
    }

    .hero-image {
        max-height: 550px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
}

/* Tablet/Laptop (1024px - 1200px) */
@media (max-width: 1200px) {
    .hero-wrapper {
        grid-template-columns: 1fr 0.95fr;
        gap: 40px;
    }

    .hero-image {
        max-height: 480px;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .catalog-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* iPad Pro 11" / iPad Air (820px - 1024px) */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr 0.9fr;
        gap: 35px;
    }

    .hero-image {
        max-height: 420px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-buttons {
        gap: 12px;
    }

    .products-feature-strip {
        padding: 14px 0 10px;
    }

    .products-feature-item {
        padding: 11px 12px;
    }

    .products-feature-item h3 {
        font-size: 0.88rem;
    }

    .products-feature-item p {
        font-size: 0.78rem;
    }

    .products-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* iPad Mini / iPad (768px - 820px) */
@media (max-width: 820px) {
    .hero-wrapper {
        grid-template-columns: 0.95fr 0.9fr;
        gap: 25px;
    }

    .hero-image {
        max-height: 380px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        justify-content: flex-start;
    }

    .burger {
        display: flex;
        z-index: 102;
    }

    .lang-toggle {
        margin-left: auto;
        margin-right: 8px;
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .burger.active {
        background: var(--gold-gradient);
        border-color: var(--deep-gold);
    }

    .burger.active div {
        background-color: white;
    }

    .nav-links {
        position: fixed;
        right: 8px;
        height: calc(100vh - (var(--navbar-height) + 16px));
        top: calc(var(--navbar-height) + 8px);
        flex-direction: column;
        background: linear-gradient(180deg, #fffdfb 0%, #fff8ed 100%);
        width: min(82vw, 340px);
        max-width: calc(100vw - 16px);
        text-align: left;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.25s ease;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 10px;
        gap: 0;
        overflow-y: auto;
        z-index: 101;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links li {
        padding: 0;
    }

    .nav-links li a {
        display: block;
        margin: 4px 0;
        padding: 11px 14px;
        border-radius: 10px;
        font-weight: 600;
        transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .nav-links li a:hover,
    .nav-links li a:focus-visible,
    .nav-links li a:active,
    .nav-links li a.active {
        background-color: rgba(212, 164, 55, 0.14);
        color: var(--deep-gold);
        transform: translateX(2px);
    }

    .nav-admin-link {
        width: 100%;
        height: auto;
        min-height: 42px;
        border-radius: 10px;
        opacity: 0.62;
        justify-content: flex-start;
        padding: 11px 14px;
        font-size: 0.72rem;
        letter-spacing: 0.18em;
    }

    .nav-admin-link:hover,
    .nav-admin-link:focus-visible {
        transform: translateX(2px);
    }

    .burger.active .line1 {
        transform: rotate(45deg);
    }

    .burger.active .line2 {
        opacity: 0;
        transform: scaleX(0);
    }

    .burger.active .line3 {
        transform: rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }

    .hero-buttons {
        gap: 8px;
    }

    .hero-wrapper {
        grid-template-columns: 0.9fr 0.8fr;
        gap: 15px;
        align-items: flex-start;
    }

    .hero-image {
        max-height: 280px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        min-height: 40px;
    }

    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .featured-action {
        margin-top: 16px;
    }

    .collection-card {
        padding: 18px 12px;
    }

    .collection-icon {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        margin: 0 auto 8px;
    }

    .product-image {
        height: 150px;
        margin-bottom: 10px;
    }

    .product-image img,
    .catalog-preview img,
    .gallery-item img,
    #productModalImage,
    #featuredProductModalImage {
        object-fit: contain;
        background: var(--cream);
    }

    .detail-tag {
        padding: 3px 8px;
        font-size: 0.65rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .collection-card h3 {
        font-size: 0.95rem;
    }

    .collection-card p {
        font-size: 0.75rem;
    }

    .featured-actions {
        flex-direction: column;
        gap: 8px;
    }

    .featured-actions .btn {
        width: 100%;
    }

    .featured h2, .about h2, .contact h2 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .collections-header h1 {
        font-size: 1.7rem;
    }

    .collections-header p {
        font-size: 0.9rem;
    }

    .catalog-search {
        min-width: 100%;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-preview img {
        height: 140px;
    }

    .product-modal-grid {
        grid-template-columns: 1fr;
    }

    #productModalImage {
        max-height: 300px;
    }

    .gold-rate-section h2,
    .gallery-section h2 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .rate-preview-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .gold-rate-frame {
        height: 260px;
    }

    .rate-mobile-summary {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .gallery-item img {
        height: 160px;
    }

    #galleryModalVideo {
        height: min(62vh, 420px);
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-map {
        min-height: 210px;
        aspect-ratio: 16 / 11;
    }

    .contact-map-wrapper {
        gap: 10px;
    }

    .map-actions {
        justify-content: stretch;
    }

    .map-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 18px;
        right: 18px;
        font-size: 1.3rem;
    }

    .whatsapp-hint {
        right: 55px;
        font-size: 0.7rem;
        padding: 5px 8px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-section ul li {
        margin-bottom: 6px;
    }

    .social-links {
        gap: 8px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .footer-bottom {
        padding-top: 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 520px) {
    :root {
        --navbar-height: 88px;
    }

    .lang-toggle {
        padding: 4px 8px;
        font-size: 0.66rem;
        margin-right: 4px;
    }

    .navbar .container {
        gap: 8px;
    }

    .logo-img {
        width: 22px;
        height: 22px;
    }

    .nav-brand {
        gap: 6px;
        min-width: 0;
        max-width: calc(100% - 92px);
    }

    .nav-brand .brand-text {
        display: block;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .nav-links {
        right: 6px;
        top: calc(var(--navbar-height) + 6px);
        height: calc(100vh - (var(--navbar-height) + 12px));
        max-width: calc(100vw - 12px);
        padding: 8px;
        border-radius: 14px;
    }

    .nav-links li {
        padding: 0;
        font-size: 0.9rem;
    }

    .hero {
        padding: 35px 0;
    }

    .hero-content h1 {
        font-size: 1.1rem;
        margin-bottom: 8px;
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 0.78rem;
        margin-bottom: 10px;
        line-height: 1.45;
    }

    .hero-buttons {
        gap: 5px;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .hero-wrapper {
        grid-template-columns: minmax(0, 1fr) 108px;
        gap: 8px;
        align-items: flex-start;
    }

    .hero-image {
        max-height: 170px;
        width: 108px;
        margin: 0;
        justify-self: end;
        align-self: flex-start;
    }

    .btn {
        padding: 8px 10px;
        font-size: 0.72rem;
        width: 100%;
        max-width: 100%;
        min-height: 34px;
    }

    .trust-features {
        padding: 30px 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .feature-item {
        padding: 12px 8px;
    }

    .feature-item i {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }

    .feature-item h3 {
        font-size: 0.8rem;
    }

    .feature-item p {
        font-size: 0.7rem;
    }

    .featured {
        padding: 30px 0;
    }

    .featured h2, .about h2, .contact h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .collections-header {
        padding: 35px 0 18px;
    }

    .collections-header h1 {
        font-size: 1.3rem;
    }

    .collections-header p {
        font-size: 0.8rem;
    }

    .products-feature-strip {
        padding: 12px 0 8px;
    }

    .products-feature-item {
        padding: 10px 10px;
    }

    .products-feature-item i {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .products-feature-item h3 {
        font-size: 0.85rem;
        margin-bottom: 2px;
    }

    .products-feature-item p {
        font-size: 0.75rem;
    }

    .products-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .products-feature-item {
        padding: 9px 8px;
    }

    .products-feature-item h3 {
        font-size: 0.8rem;
    }

    .products-feature-item p {
        font-size: 0.7rem;
    }

    .products-catalog-section {
        padding: 20px 0 36px;
    }

    .catalog-controls {
        margin-bottom: 12px;
    }

    .catalog-filter {
        padding: 7px 12px;
        font-size: 0.75rem;
    }

    .catalog-search {
        font-size: 0.82rem;
        padding: 9px 12px;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .catalog-preview img {
        height: 170px;
    }

    .product-modal-content {
        padding: 12px;
        max-height: 90vh;
        overflow-y: auto;
        border-radius: 12px;
    }

    .product-modal-close {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
        top: 10px;
        right: 10px;
    }

    .product-modal-grid {
        gap: 12px;
    }

    #productModalImage,
    #featuredProductModalImage {
        max-height: 230px;
    }

    .product-modal-details h3 {
        font-size: 1.2rem;
    }

    .product-modal-price {
        font-size: 1.1rem;
    }

    .product-modal-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .product-modal-actions .btn {
        min-width: 100%;
        min-height: 42px;
        font-size: 0.9rem;
        padding: 10px 14px;
    }

    .featured-actions {
        gap: 8px;
    }

    .featured-actions .btn {
        min-height: 40px;
        font-size: 0.85rem;
        padding: 9px 10px;
    }

    .gold-rate-section h2,
    .gallery-section h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .gold-rate-section,
    .gallery-section {
        padding: 30px 0;
    }

    .rate-preview-card {
        padding: 12px;
    }

    .rate-showcase-card {
        padding: 18px;
    }

    .rate-showcase-grid {
        grid-template-columns: 1fr;
    }

    .rate-showcase-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .rate-live-pill {
        align-self: flex-start;
    }

    .rate-summary-value {
        font-size: 1rem;
    }

    .rate-source {
        font-size: 0.75rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 180px;
    }

    #galleryModalVideo {
        height: min(56vh, 320px);
    }

    .gallery-modal-content {
        padding: 10px;
    }

    .gallery-close {
        width: 30px;
        height: 30px;
        font-size: 1.3rem;
        top: 6px;
        right: 8px;
    }

    .collections-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .featured-action {
        margin-top: 14px;
    }

    .collection-card {
        padding: 15px 12px;
    }

    .contact {
        padding: 30px 0 44px;
    }

    .contact-wrapper {
        gap: 12px;
        margin-top: 18px;
    }

    .contact-map {
        min-height: 180px;
        aspect-ratio: 16 / 11;
    }

    .contact-map iframe {
        min-height: 180px;
    }

    .contact-map-wrapper {
        gap: 8px;
        padding-bottom: 6px;
    }

    .map-actions {
        justify-content: stretch;
    }

    .map-actions .btn {
        width: 100%;
        padding: 9px 12px;
        font-size: 0.8rem;
    }

    .map-actions .btn {
        font-size: 0.82rem;
        padding: 10px 14px;
    }

    .collection-icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .product-image {
        height: 120px;
        margin-bottom: 8px;
    }

    .product-image img,
    .catalog-preview img,
    .gallery-item img,
    #productModalImage,
    #featuredProductModalImage {
        object-fit: contain;
        background: var(--cream);
    }

    .detail-tag {
        padding: 3px 7px;
        font-size: 0.6rem;
    }

    .product-price {
        font-size: 1rem;
    }

    .collection-card h3 {
        font-size: 0.9rem;
    }

    .collection-card p {
        font-size: 0.7rem;
    }

    .about {
        padding: 30px 0;
    }

    .about-wrapper {
        gap: 20px;
    }

    .about-text p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .about-features li {
        padding: 8px 0;
        font-size: 0.85rem;
    }

    .about-features i {
        font-size: 1rem;
    }

    .contact {
        padding: 30px 0;
    }

    .contact-wrapper {
        gap: 15px;
        margin-top: 20px;
    }

    .contact {
        padding: 30px 0 44px;
    }

    .contact-map-wrapper {
        gap: 8px;
        padding-bottom: 6px;
    }

    .contact-map {
        min-height: 180px;
        aspect-ratio: 16 / 11;
    }

    .contact-map iframe {
        height: 100%;
        min-height: 180px;
    }

    .map-actions {
        justify-content: stretch;
    }

    .map-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 9px 12px;
        font-size: 0.82rem;
    }

    .info-item {
        gap: 12px;
    }

    .info-item i {
        font-size: 1.2rem;
        min-width: 30px;
    }

    .info-item h4 {
        font-size: 0.9rem;
    }

    .info-item p {
        font-size: 0.8rem;
    }

    .footer {
        padding: 25px 0 10px;
    }

    .footer-content {
        gap: 12px;
        margin-bottom: 15px;
    }

    .footer-section h5 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .footer-section p {
        font-size: 0.8rem;
    }

    .footer-section ul li {
        margin-bottom: 5px;
    }

    .footer-section ul a {
        font-size: 0.8rem;
    }

    .social-links {
        gap: 6px;
    }

    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
    }

    .footer-bottom {
        padding-top: 10px;
        font-size: 0.75rem;
    }

    .floating-whatsapp {
        width: 48px;
        height: 48px;
        bottom: 15px;
        right: 15px;
        font-size: 1.2rem;
    }

    .whatsapp-hint {
        display: none;
    }
}

@media (max-width: 380px) {
    :root {
        --navbar-height: 84px;
    }

    .nav-brand {
        max-width: calc(100% - 88px);
    }

    .nav-brand .brand-text {
        font-size: 0.84rem;
        line-height: 1.18;
    }

    .logo-img {
        width: 20px;
        height: 20px;
    }

    .faq-section {
        padding: 24px 0 40px;
    }

    .faq-item summary {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .faq-item p {
        padding: 0 14px 14px;
        font-size: 0.84rem;
    }
}

@media (max-width: 380px) {
    .hero-wrapper {
        grid-template-columns: minmax(0, 1fr) 90px;
        gap: 6px;
    }

    .hero-image {
        width: 90px;
        max-height: 150px;
    }

    .hero-content h1 {
        font-size: 1rem;
    }

    .hero-content p {
        font-size: 0.72rem;
        margin-bottom: 8px;
    }

    .btn {
        font-size: 0.68rem;
        padding: 7px 9px;
        min-height: 32px;
    }
}
