﻿/* =========================================================
   TAMRAPATRAM PREMIUM THEME (Copper / Luxury)
   Load AFTER theme.min.css
   ========================================================= */

:root {
    --tp-bg: #f7f5f2;
    --tp-surface: #ffffff;
    --tp-ink: #141414;
    --tp-muted: #6b6b6b;
    /* Copper palette */
    --tp-copper: #b87333;
    --tp-copper-dark: #8f5a26;
    --tp-copper-soft: rgba(184,115,51,.14);
    --tp-border: rgba(0,0,0,.08);
    --tp-shadow: 0 18px 50px rgba(0,0,0,.08);
    --tp-radius: 18px;
}

html, body {
    background: var(--tp-bg) !important;
    color: var(--tp-ink);
}

/* Global section spacing */
.tp-section {
    padding: 36px 0;
}

@media (min-width: 992px) {
    .tp-section {
        padding: 54px 0;
    }
}

.tp-container {
    max-width: 1320px;
}

/* Headings */
.tp-title {
    font-weight: 800;
    letter-spacing: .2px;
    margin: 0;
}

.tp-subtitle {
    color: var(--tp-muted);
    margin: 6px 0 0 0;
}

/* =========================================================
   HERO (Full width premium banner)
   ========================================================= */
.tp-hero {
    border-radius: var(--tp-radius);
    overflow: hidden;
    background: radial-gradient(1200px 380px at 20% 20%, rgba(184,115,51,.35), transparent 60%), linear-gradient(135deg, #121212 0%, #2a1b10 55%, #141414 100%);
    box-shadow: var(--tp-shadow);
    position: relative;
}

    .tp-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to right, rgba(0,0,0,.65), rgba(0,0,0,.15) 55%, rgba(0,0,0,.35));
        pointer-events: none;
    }

.tp-hero-inner {
    position: relative;
    z-index: 2;
    padding: 42px 18px;
}

@media (min-width: 992px) {
    .tp-hero-inner {
        padding: 70px 46px;
    }
}

.tp-hero h1 {
    color: #fff;
    font-weight: 900;
    letter-spacing: .3px;
    font-size: clamp(28px, 3.2vw, 46px);
    margin: 0;
}

.tp-hero p {
    color: rgba(255,255,255,.85);
    max-width: 680px;
    margin: 14px 0 22px;
    font-size: 1.05rem;
}

/* Hero search (optional) */
.tp-hero .tp-hero-search {
    max-width: 560px;
}

    .tp-hero .tp-hero-search input {
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,.18);
        background: rgba(255,255,255,.08);
        color: #fff;
        padding: 14px 18px;
    }

        .tp-hero .tp-hero-search input::placeholder {
            color: rgba(255,255,255,.65);
        }

/* Copper button */
.tp-btn {
    background: var(--tp-copper);
    border: 1px solid rgba(255,255,255,.08);
    color: #fff;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 800;
}

    .tp-btn:hover {
        background: var(--tp-copper-dark);
        color: #fff;
    }

/* =========================================================
   Section cards
   ========================================================= */
.tp-panel {
    background: var(--tp-surface);
    border: 1px solid var(--tp-border);
    border-radius: var(--tp-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

/* =========================================================
   Product Cards (works even if components render .product-card)
   ========================================================= */
.product-card {
    border: 1px solid var(--tp-border) !important;
    border-radius: 18px !important;
    background: #fff !important;
    box-shadow: 0 12px 26px rgba(0,0,0,.06);
}

    .product-card:hover {
        box-shadow: 0 20px 44px rgba(0,0,0,.10);
    }

    .product-card h3 a {
        font-weight: 700 !important;
    }

.add-to-cart-btn {
    border-radius: 999px !important;
    font-weight: 800 !important;
}

.buy-now-btn {
    border-radius: 999px !important;
    font-weight: 800 !important;
    background: #111 !important;
}

.add-to-cart-btn:hover {
    background: var(--tp-copper) !important;
    border-color: var(--tp-copper) !important;
    color: #fff !important;
}

/* =========================================================
   Category chips / icons area (if your component renders round icons)
   ========================================================= */
.tp-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid var(--tp-border);
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(0,0,0,.05);
}

    .tp-chip:hover {
        border-color: rgba(184,115,51,.35);
    }

/* =========================================================
   Make content use full width properly
   ========================================================= */
.content-wrapper {
    background: transparent !important;
}

.container {
    /* keep bootstrap container but make sure it doesn't become narrow in theme */
}
