@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
    --primary-color: #ff8c00;
    --primary-hover: #e67e00;
    --accent-color: #fff1e0;
    --bg-color: #fffaf3;
    --surface-color: #ffffff;
    --text-color: #3a2817;
    --text-light: #86684f;
    --heading-color: #2a1c12;
    --white: #ffffff;
    --border-color: #f2d5b0;

    --bg: var(--bg-color);
    --bg-soft: #fff4e8;
    --surface: var(--surface-color);
    --surface-soft: #fffdf9;
    --line: #f3dcc2;
    --text: var(--text-color);
    --muted: var(--text-light);
    --primary: var(--primary-color);
    --primary-soft: #ffb14f;
    --accent: #ffe6c8;
    --footer: #2f1a0d;

    --shadow: 0 24px 60px rgba(120, 67, 15, 0.16);
    --shadow-sm: 0 12px 30px rgba(120, 67, 15, 0.1);
    --shadow-soft: 0 24px 60px rgba(138, 81, 23, 0.1);
    --shadow-card: 0 12px 34px rgba(138, 81, 23, 0.1);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition: all 0.25s ease;
    --font-body: "Manrope", "Segoe UI", sans-serif;
    --font-heading: "Space Grotesk", "Segoe UI", sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 200, 120, 0.3), transparent 36%),
        radial-gradient(circle at 90% 0%, rgba(255, 173, 82, 0.24), transparent 32%),
        radial-gradient(circle at 50% 100%, rgba(255, 222, 170, 0.34), transparent 42%),
        linear-gradient(180deg, #fffdf9 0%, #fff6ea 100%);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    margin-bottom: 0.5em;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.75s cubic-bezier(0.2, 1, 0.3, 1);
    transition-delay: var(--delay, 0ms);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.container {
    width: min(1380px, calc(100% - 88px));
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.hidden {
    display: none !important;
}

.w-full {
    width: 100%;
}

.block {
    display: block;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.breadcrumb-text {
    color: #666;
    font-size: 0.9rem;
}

.content-narrow-800 {
    max-width: 800px;
    margin: 0 auto;
}

.content-narrow-600 {
    max-width: 600px;
    margin: 0 auto;
}

.auth-brand-logo {
    height: 50px;
    margin: 0 auto;
    display: block;
}

.form-inline-tight {
    gap: 8px;
    align-items: center;
}

.dial-code-field {
    max-width: 90px;
    text-align: center;
    background: #f5f5f5;
}

.about-hero-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
}

.section-copy {
    text-align: left;
    line-height: 1.8;
}

.subtotal-large {
    font-size: 1.2rem;
}

.size-note {
    color: #888;
    font-size: 0.85rem;
}

.sr-only {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    min-height: 44px;
    background: linear-gradient(120deg, #ff9e21 0%, #ff8c00 60%, #e67900 100%);
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 999px;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    box-shadow: 0 14px 28px rgba(188, 103, 12, 0.28);
}

.btn:hover {
    background: var(--white);
    border-color: #ffb86a;
    color: var(--primary-hover);
    box-shadow: 0 10px 22px rgba(188, 103, 12, 0.2);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    min-height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #f1c28d;
    color: var(--primary-hover);
    border-radius: 999px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline:hover {
    background: linear-gradient(120deg, #ff9e21 0%, #ff8c00 70%, #e67900 100%);
    color: #fff;
    border-color: transparent;
}

.btn[disabled],
.btn-outline[disabled] {
    opacity: 0.65;
    cursor: not-allowed;
    box-shadow: none;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--surface-color);
    resize: none;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #ffab45;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.18);
}

.product-card {
    border: 1px solid var(--border-color);
    transition: var(--transition);
    padding: 14px;
    border-radius: var(--radius-md);
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    height: var(--product-card-height, 460px);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    box-shadow: 0 18px 40px rgba(188, 103, 12, 0.16);
    border-color: rgba(255, 188, 107, 0.95);
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    height: 220px;
    background: #fff5e8;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(245, 201, 151, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-wrap a{
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 12px;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.02);
}

.badge-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(120deg, #ffab45 0%, #ff8c00 60%, #dc7300 100%);
    color: var(--white);
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 999px;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info .category {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 6px;
}

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.product-info a {
    color: var(--text-color);
}

.product-info a:hover {
    color: var(--primary-color);
}

.product-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    margin-top: auto;
    font-size: 15px;
    width: 100%;
}

.curr-price {
    color: var(--heading-color);
    font-weight: 700;
    white-space: nowrap;
}

.old-price {
    text-decoration: line-through;
    color: #b49574;
    font-size: 0.9em;
    white-space: nowrap;
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 35px;
    height: 35px;
    background: var(--surface-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.action-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.product-card .btn {
    width: 100%;
    margin-top: 12px;
    min-height: 42px;
    border-radius: 12px;
    box-shadow: none;
}

.product-card .btn:hover {
    box-shadow: none;
}

.oc-toast {
    position: fixed;
    left: 50%;
    top: 110px;
    min-width: 220px;
    max-width: 360px;
    padding: 12px 14px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
    z-index: 1200;
    opacity: 0;
    transform: translate(-50%, -8px) scale(0.96);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.oc-toast.type-success {
    background: #1c7d45;
}

.oc-toast.type-warning {
    background: #9a6412;
}

.oc-toast.type-error {
    background: #b52b2b;
}

.oc-toast.type-info {
    background: #2f3f56;
}

.oc-toast.show {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}

@media (max-width: 560px) {
    .oc-toast {
        top: 88px;
        min-width: 0;
        width: calc(100% - 28px);
        max-width: 360px;
    }
}

@media (max-width: 1240px) {
    .container {
        width: min(1100px, calc(100% - 48px));
    }
}

@media (max-width: 900px) {
    .py-60 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 560px) {
    .container {
        width: calc(100% - 28px);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
