/* ==============================
   RESET & BASE
   ============================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #B8820F;
    --gold-light: #D4A017;
    --gold-pale: #F0C040;
    --saffron: #E07B00;
    --saffron-light: #F5A623;
    --cream: #FDF6EC;
    --cream-dark: #F5EAD8;
    --cream-mid: #EED9B8;
    --text-primary: #3B1F00;
    --text-secondary: #7A5228;
    --text-muted: #A07848;
    --card-bg: #FFFFFF;
    --card-border: rgba(184, 130, 15, 0.25);
    --radius-lg: 20px;
    --radius-pill: 50px;
    --shadow-soft: 0 4px 20px rgba(120, 70, 0, 0.1);
    --shadow-hover: 0 10px 36px rgba(120, 70, 0, 0.18);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ==============================
   BACKGROUND PATTERN
   ============================== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse at 15% 10%, rgba(224, 123, 0, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 20%, rgba(245, 166, 35, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 90%, rgba(184, 130, 15, 0.1) 0%, transparent 55%);
}

/* Background warm gradient bands */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(180deg,
            rgba(253, 236, 200, 0.6) 0%,
            rgba(253, 246, 236, 0.9) 30%,
            rgba(250, 240, 220, 0.8) 70%,
            rgba(248, 232, 200, 0.6) 100%);
}

/* ==============================
   CONTAINER
   ============================== */
.container {
    position: relative;
    z-index: 1;
    max-width: 480px;
    margin: 0 auto;
    padding: 44px 20px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ==============================
   LOGO
   ============================== */
.logo-container {
    position: relative;
    margin-bottom: 20px;
    width: 120px;
    height: 120px;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-light);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(184, 130, 15, 0.12), var(--shadow-soft);
}

.logo-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed rgba(184, 130, 15, 0.35);
    animation: spin 14s linear infinite;
    z-index: 1;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ==============================
   BRAND
   ============================== */
.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7A3E00 0%, var(--saffron) 50%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-weight: 500;
}

/* ==============================
   PRODUCT CARD
   ============================== */
.product-card {
    position: relative;
    width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top right, rgba(224, 123, 0, 0.08), transparent 70%);
    pointer-events: none;
}

.product-card-glow {
    display: none;
}

.product-content {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* ==============================
   SAFFRON JAR IMAGE
   ============================== */
.saffron-visual {
    width: 88px;
    height: 88px;
    flex-shrink: 0;
    border-radius: 14px;
    border: 1.5px solid rgba(184, 130, 15, 0.2);
    background: linear-gradient(135deg, #FFF8EC, #FDECC8);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(120, 70, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.saffron-jar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.08);
    transition: transform 0.4s ease;
}

.product-card:hover .saffron-jar-img {
    transform: scale(1.14);
}

/* ==============================
   PRODUCT INFO
   ============================== */
.product-info {
    flex: 1;
}

.product-badge {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--saffron);
    background: rgba(224, 123, 0, 0.1);
    border: 1px solid rgba(224, 123, 0, 0.25);
    padding: 2px 10px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 7px;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.product-description {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.product-description span {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

/* ==============================
   LINKS CONTAINER
   ============================== */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

/* ==============================
   LINK BUTTONS — iOS Glass
   ============================== */
.link-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);

    /* Frosted glass */
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);

    /* Specular edge — bright top, subtle bottom */
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-bottom-color: rgba(200, 160, 80, 0.2);
    border-right-color: rgba(200, 160, 80, 0.15);

    /* Layered iOS shadow */
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.8) inset,
        0 4px 16px rgba(130, 80, 0, 0.1),
        0 1px 3px rgba(130, 80, 0, 0.08);

    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

/* Gloss sweep on top half */
.link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: var(--radius-pill) var(--radius-pill) 0 0;
    pointer-events: none;
}

.link-btn:hover {
    transform: translateY(-3px) scale(1.018);
    background: rgba(255, 255, 255, 0.72);
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.9) inset,
        0 12px 32px rgba(130, 80, 0, 0.16),
        0 2px 6px rgba(130, 80, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.9);
}

.link-btn:active {
    transform: translateY(0) scale(0.97);
    background: rgba(255, 255, 255, 0.45);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.7) inset,
        0 2px 8px rgba(130, 80, 0, 0.1);
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: transform 0.25s ease;
    position: relative;
    z-index: 1;
}

.link-btn:hover .btn-icon {
    transform: scale(1.1) rotate(-5deg);
}

.btn-label {
    flex: 1;
    position: relative;
    z-index: 1;
    font-weight: 600;
    color: var(--text-primary);
}

.btn-arrow {
    font-size: 0.68rem;
    color: var(--text-muted);
    opacity: 0.5;
    transition: opacity 0.25s, transform 0.25s;
    position: relative;
    z-index: 1;
}

.link-btn:hover .btn-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* Per-button icon colors only — glass body is shared */
.link-btn.instagram .btn-icon {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.link-btn.call .btn-icon {
    background: linear-gradient(135deg, #219653, #27ae60);
    color: #fff;
}

.link-btn.whatsapp .btn-icon {
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: #fff;
}

.link-btn.website .btn-icon {
    background: linear-gradient(135deg, #8B6914, #C9952A);
    color: #fff;
}

.link-btn.catalog .btn-icon {
    background: linear-gradient(135deg, #6C3483, #9B59B6);
    color: #fff;
}

.link-btn.email .btn-icon {
    background: linear-gradient(135deg, #1A5276, #3498DB);
    color: #fff;
}

.link-btn.location .btn-icon {
    background: linear-gradient(135deg, #922B21, #E74C3C);
    color: #fff;
}

/* ==============================
   FOOTER
   ============================== */
.footer {
    margin-top: 40px;
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.6;
    letter-spacing: 1.5px;
    text-align: center;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 400px) {
    .brand-title {
        font-size: 1.75rem;
    }

    .saffron-visual {
        width: 76px;
        height: 76px;
    }

    .link-btn {
        padding: 11px 15px;
        font-size: 0.83rem;
    }

    .btn-icon {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
}