/* =========================================================
   SOLEVA — SHOE STORE
   Professional Responsive Stylesheet
========================================================= */

:root {
    --primary: #8b4e3d;
    --primary-dark: #66382d;
    --cream: #f7f2ec;
    --cream-dark: #ece2d6;
    --white: #ffffff;
    --black: #211d1a;
    --text: #3b3430;
    --muted: #81756d;
    --border: #ded4ca;
    --success: #50735b;

    --container: 1180px;

    --shadow-sm: 0 8px 25px rgba(44, 31, 23, 0.06);
    --shadow-lg: 0 25px 70px rgba(44, 31, 23, 0.15);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --transition: 0.25s ease;
}


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3 {
    color: var(--black);
    line-height: 1.15;
}

h1,
h2 {
    font-family: "Playfair Display", serif;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.2rem);
}

h2 {
    font-size: clamp(2.1rem, 4vw, 3.5rem);
}

p {
    color: var(--muted);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;

    color: var(--primary);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(15px);

    border-bottom: 1px solid transparent;

    transition: var(--transition);
}

.site-header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* LOGO */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--primary);
    color: white;

    font-size: 1.05rem;
}

.logo-text {
    display: flex;
    flex-direction: column;

    color: var(--black);

    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1;
}

.logo-text small {
    margin-top: 5px;

    color: var(--muted);

    font-size: 0.48rem;
    letter-spacing: 0.3em;
}


/* NAV */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    position: relative;

    color: var(--text);
    font-size: 0.92rem;
    font-weight: 600;

    transition: var(--transition);
}

.nav-menu a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--primary);

    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}


/* HEADER ACTIONS */

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* SEARCH */

.search-form {
    display: flex;
    align-items: center;

    width: 220px;
    height: 44px;

    background: var(--cream);

    border: 1px solid var(--border);
    border-radius: 30px;

    overflow: hidden;
}

.search-form input {
    width: 100%;
    height: 100%;

    padding: 0 15px;

    border: 0;
    outline: 0;

    background: transparent;

    color: var(--black);
    font-size: 0.86rem;
}

.search-form button {
    width: 45px;
    height: 100%;

    border: 0;

    background: transparent;
    color: var(--primary);

    transition: var(--transition);
}

.search-form button:hover {
    background: var(--primary);
    color: white;
}


/* ICON BUTTON */

.icon-button,
.menu-button {
    position: relative;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: white;
    color: var(--black);

    transition: var(--transition);
}

.icon-button:hover,
.menu-button:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.icon-count {
    position: absolute;

    top: -3px;
    right: -3px;

    min-width: 18px;
    height: 18px;

    display: grid;
    place-items: center;

    padding: 0 4px;

    border-radius: 20px;

    background: var(--primary);
    color: white;

    font-size: 0.62rem;
    font-weight: 700;
}

.menu-button {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(139, 78, 61, 0.12),
            transparent 35%
        ),
        var(--cream);

    padding: 80px 0 90px;

    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin: 18px 0 25px;
}

.hero h1 span {
    color: var(--primary);
    font-style: italic;
}

.hero-content > p {
    max-width: 540px;

    font-size: 1.05rem;
}

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}


/* BUTTONS */

.btn {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0 24px;

    border: 1px solid transparent;
    border-radius: 8px;

    font-weight: 700;

    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--border);
    background: white;
    color: var(--black);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}


/* HERO FEATURES */

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;

    margin-top: 48px;
}

.hero-features div {
    display: flex;
    align-items: center;
    gap: 9px;

    font-size: 0.8rem;
    font-weight: 600;
}

.hero-features i {
    color: var(--primary);
    font-size: 1rem;
}


/* HERO IMAGE */

.hero-image {
    position: relative;
}

.hero-image-card {
    height: 640px;

    overflow: hidden;

    border-radius: 180px 180px 20px 20px;

    box-shadow: var(--shadow-lg);
}

.hero-image-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.hero-image-card:hover img {
    transform: scale(1.04);
}

.floating-card {
    position: absolute;

    left: -35px;
    bottom: 45px;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 18px 20px;

    background: white;

    border-radius: 14px;

    box-shadow: var(--shadow-lg);
}

.floating-card > i {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--cream);
    color: var(--primary);
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    color: var(--black);
    font-size: 0.9rem;
}

.floating-card span {
    color: var(--muted);
    font-size: 0.72rem;
}


/* =========================================================
   SECTIONS
========================================================= */

.categories-section,
.products-section,
.about-section {
    padding: 100px 0;
}

.section-heading {
    margin-bottom: 35px;
}

.section-heading.center {
    max-width: 600px;
    margin-inline: auto;
    text-align: center;
}

.section-heading h2 {
    margin: 12px 0;
}

.section-heading p {
    font-size: 0.95rem;
}


/* =========================================================
   CATEGORIES
========================================================= */

.category-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.category-button {
    min-height: 115px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    background: white;
    color: var(--text);

    transition: var(--transition);
}

.category-button i {
    color: var(--primary);
    font-size: 1.3rem;
}

.category-button span {
    font-size: 0.82rem;
    font-weight: 700;
}

.category-button:hover,
.category-button.active {
    background: var(--primary);
    color: white;

    border-color: var(--primary);

    transform: translateY(-4px);

    box-shadow: var(--shadow-sm);
}

.category-button:hover i,
.category-button.active i {
    color: white;
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
    background: var(--cream);
}

.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}

.product-result {
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 600;
}

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

    gap: 20px;
}


/* PRODUCT CARD */

.product-card {
    background: white;

    border: 1px solid transparent;
    border-radius: var(--radius-md);

    overflow: hidden;

    transition: var(--transition);
}

.product-card:hover {
    border-color: var(--border);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;

    aspect-ratio: 1 / 1.05;

    overflow: hidden;

    background: var(--cream-dark);
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

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

.sale-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 5px 10px;

    border-radius: 20px;

    background: var(--primary);
    color: white;

    font-size: 0.67rem;
    font-weight: 800;
    text-transform: uppercase;
}

.wishlist-btn {
    position: absolute;

    top: 12px;
    right: 12px;

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.92);

    color: var(--black);

    transition: var(--transition);
}

.wishlist-btn:hover,
.wishlist-btn.active {
    background: var(--primary);
    color: white;
}

.quick-view {
    position: absolute;

    left: 15px;
    right: 15px;
    bottom: -55px;

    height: 42px;

    border: 0;
    border-radius: 7px;

    background: white;
    color: var(--black);

    font-weight: 700;

    transition: var(--transition);
}

.product-card:hover .quick-view {
    bottom: 15px;
}

.quick-view:hover {
    background: var(--primary);
    color: white;
}

.product-info {
    padding: 20px;
}

.product-category {
    color: var(--primary);

    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.product-info h3 {
    margin: 7px 0;

    font-family: "DM Sans", sans-serif;

    font-size: 1rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 7px;

    margin: 8px 0 16px;

    font-size: 0.75rem;
}

.stars {
    color: #c68c35;
}

.rating small {
    color: var(--muted);
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.price strong {
    color: var(--black);
    font-size: 0.95rem;
}

.price del {
    color: var(--muted);
    font-size: 0.75rem;
}

.add-cart {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border: 0;
    border-radius: 8px;

    background: var(--black);
    color: white;

    transition: var(--transition);
}

.add-cart:hover {
    background: var(--primary);
    transform: translateY(-2px);
}


/* NO PRODUCTS */

.no-products {
    grid-column: 1 / -1;

    padding: 80px 20px;

    text-align: center;
}

.no-products i {
    color: var(--primary);
    font-size: 3rem;
}

.no-products h3 {
    margin: 15px 0 5px;
}


/* =========================================================
   CRAFTSMANSHIP
========================================================= */

.craftsmanship-section {
    padding: 120px 0;

    background: var(--black);
    color: white;
}

.craftsmanship-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}

.craftsmanship-image {
    position: relative;

    height: 600px;

    overflow: hidden;

    border-radius: var(--radius-lg);
}

.craftsmanship-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.craft-badge {
    position: absolute;

    right: 25px;
    bottom: 25px;

    width: 125px;
    height: 125px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);
    color: white;

    text-align: center;
}

.craft-badge strong {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
}

.craft-badge span {
    font-size: 0.65rem;
}

.craftsmanship-content h2 {
    margin: 15px 0 20px;
    color: white;
}

.craftsmanship-content > p {
    max-width: 550px;
    color: #bdb4ae;
}

.craft-points {
    display: grid;
    gap: 25px;

    margin: 35px 0;
}

.craft-points > div {
    display: flex;
    gap: 17px;
}

.craft-points i {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);
    color: #d6a48e;
}

.craft-points h3 {
    margin-bottom: 4px;
    color: white;

    font-size: 0.95rem;
}

.craft-points p {
    color: #aaa09a;
    font-size: 0.8rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: white;

    font-size: 0.85rem;
    font-weight: 700;

    border-bottom: 1px solid rgba(255, 255, 255, 0.4);

    padding-bottom: 5px;

    transition: var(--transition);
}

.text-link:hover {
    color: #d6a48e;
}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;

    align-items: center;

    gap: 80px;
}

.about-content > p {
    max-width: 650px;
    margin-top: 15px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-top: 35px;
}

.stats div {
    padding-right: 20px;

    border-right: 1px solid var(--border);
}

.stats div:last-child {
    border-right: 0;
}

.stats strong {
    display: block;

    color: var(--primary);

    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
}

.stats span {
    color: var(--muted);
    font-size: 0.72rem;
}

.about-card {
    padding: 50px;

    border-radius: var(--radius-lg);

    background: var(--cream);
}

.about-card > i {
    color: var(--primary);
    font-size: 2rem;
}

.about-card blockquote {
    margin: 20px 0;

    color: var(--black);

    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    line-height: 1.4;
}

.about-card > span {
    color: var(--muted);
    font-size: 0.8rem;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter-section {
    padding: 70px 0;

    background: var(--cream);
}

.newsletter {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 50px;
}

.newsletter h2 {
    margin: 10px 0;
    font-size: 2.5rem;
}

.newsletter-form {
    display: flex;

    padding: 6px;

    background: white;

    border: 1px solid var(--border);
    border-radius: 9px;
}

.newsletter-form input {
    width: 100%;

    border: 0;
    outline: 0;

    padding: 0 15px;

    color: var(--black);
}

.newsletter-form .btn {
    flex-shrink: 0;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding-top: 75px;

    background: #181513;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);

    gap: 50px;

    padding-bottom: 60px;
}

.footer-logo .logo-text {
    color: white;
}

.footer-brand > p {
    max-width: 300px;

    margin: 20px 0;

    color: #9f9690;
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border: 1px solid #3b3531;
    border-radius: 50%;

    color: #c6bdb7;

    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h3 {
    margin-bottom: 8px;

    color: white;

    font-family: "DM Sans", sans-serif;
    font-size: 0.9rem;
}

.footer-column a {
    width: fit-content;

    color: #9f9690;

    font-size: 0.8rem;

    transition: var(--transition);
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid #302b28;
}

.footer-bottom p {
    color: #77706b;
    font-size: 0.72rem;
}

.footer-bottom a {
    color: #aaa19b;
    font-size: 0.72rem;
}

.footer-bottom a:hover {
    color: white;
}


/* =========================================================
   CART
========================================================= */

.cart-overlay {
    position: fixed;
    inset: 0;

    z-index: 1100;

    background: rgba(0, 0, 0, 0.45);

    opacity: 0;
    visibility: hidden;

    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;

    top: 0;
    right: -460px;

    z-index: 1200;

    width: min(460px, 100%);
    height: 100vh;

    display: flex;
    flex-direction: column;

    background: white;

    box-shadow: -20px 0 70px rgba(0, 0, 0, 0.15);

    transition: 0.35s ease;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    min-height: 100px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 25px;

    border-bottom: 1px solid var(--border);
}

.cart-header h2 {
    margin-top: 3px;
    font-size: 1.7rem;
}

.close-button,
.modal-close {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: white;
    color: var(--black);

    transition: var(--transition);
}

.close-button:hover,
.modal-close:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 20px 25px;
}

.cart-item {
    display: grid;
    grid-template-columns: 75px 1fr 35px;

    gap: 14px;

    align-items: center;

    padding: 15px 0;

    border-bottom: 1px solid var(--border);
}

.cart-item img {
    width: 75px;
    height: 75px;

    object-fit: cover;

    border-radius: 9px;
}

.cart-item-info h4 {
    color: var(--black);
    font-size: 0.88rem;
}

.cart-item-info > span {
    display: block;

    margin: 3px 0 8px;

    color: var(--primary);

    font-size: 0.8rem;
    font-weight: 700;
}

.quantity-control {
    display: inline-flex;
    align-items: center;

    border: 1px solid var(--border);
    border-radius: 6px;

    overflow: hidden;
}

.quantity-control button {
    width: 28px;
    height: 28px;

    border: 0;

    background: var(--cream);
    color: var(--black);
}

.quantity-control span {
    width: 28px;

    text-align: center;

    font-size: 0.75rem;
    font-weight: 700;
}

.remove-item {
    width: 32px;
    height: 32px;

    border: 0;

    background: transparent;
    color: #9a8f87;
}

.remove-item:hover {
    color: #b33b32;
}

.empty-cart {
    min-height: 300px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.empty-cart > i {
    color: var(--primary);
    font-size: 3rem;
}

.empty-cart h3 {
    margin: 15px 0 5px;
}

.empty-cart p {
    font-size: 0.8rem;
}

.cart-footer {
    padding: 20px 25px;

    border-top: 1px solid var(--border);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;

    color: var(--black);
}

.cart-total-row strong {
    color: var(--primary);
}

.cart-note {
    margin: 5px 0 15px;

    font-size: 0.7rem;
}

.checkout-button {
    width: 100%;
}

.checkout-button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}


/* =========================================================
   MODAL
========================================================= */

.modal {
    position: fixed;
    inset: 0;

    z-index: 1300;

    display: grid;
    place-items: center;

    padding: 20px;

    background: rgba(25, 20, 17, 0.65);

    opacity: 0;
    visibility: hidden;

    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;

    width: min(900px, 100%);
    max-height: 90vh;

    overflow-y: auto;

    border-radius: var(--radius-lg);

    background: white;

    transform: translateY(20px) scale(0.98);

    transition: var(--transition);
}

.modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 2;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image {
    min-height: 500px;

    background: var(--cream);
}

.modal-image img {
    width: 100%;
    height: 100%;

    min-height: 500px;

    object-fit: cover;
}

.modal-info {
    padding: 55px 40px;
}

.modal-info h2 {
    margin: 8px 0 12px;

    font-size: 2.6rem;
}

.modal-rating {
    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--muted);

    font-size: 0.78rem;
}

.modal-rating i {
    color: #c68c35;
}

.modal-price {
    display: flex;
    align-items: center;
    gap: 10px;

    margin: 22px 0;

    color: var(--primary);
}

.modal-price strong {
    font-size: 1.3rem;
}

.modal-price del {
    color: var(--muted);
    font-size: 0.8rem;
}

.modal-info > p {
    font-size: 0.9rem;
}

.size-title {
    margin: 25px 0 10px;

    color: var(--black);

    font-size: 0.8rem;
    font-weight: 700;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-bottom: 25px;
}

.size-options button {
    width: 42px;
    height: 42px;

    border: 1px solid var(--border);
    border-radius: 6px;

    background: white;

    font-size: 0.75rem;
    font-weight: 700;

    transition: var(--transition);
}

.size-options button:hover,
.size-options button.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.modal-add {
    width: 100%;
}


/* =========================================================
   TOAST
========================================================= */

.toast {
    position: fixed;

    left: 50%;
    bottom: 25px;

    z-index: 2000;

    max-width: calc(100% - 40px);

    padding: 13px 20px;

    border-radius: 8px;

    background: var(--black);
    color: white;

    font-size: 0.8rem;
    font-weight: 600;

    box-shadow: var(--shadow-lg);

    transform: translate(-50%, 80px);

    opacity: 0;

    transition: 0.3s ease;

    pointer-events: none;
}

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


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {

    .nav-menu {
        gap: 18px;
    }

    .search-form {
        width: 180px;
    }

    .hero-grid {
        gap: 35px;
    }

    .hero-image-card {
        height: 550px;
    }

    .category-list {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .craftsmanship-grid,
    .about-grid {
        gap: 45px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE NAV
========================================================= */

@media (max-width: 850px) {

    .header-inner {
        min-height: 72px;
    }

    .search-form {
        width: 42px;
        border: 0;
        background: transparent;
    }

    .search-form input {
        position: absolute;

        width: 0;
        opacity: 0;

        pointer-events: none;
    }

    .search-form button {
        width: 42px;
        border-radius: 50%;
    }

    .menu-button {
        display: grid;
    }

    .nav-menu {
        position: absolute;

        top: calc(100% + 1px);
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        align-items: stretch;

        padding: 20px;

        background: white;

        border-bottom: 1px solid var(--border);

        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 12px 5px;
    }

    .nav-menu a::after {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 60px;
    }

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

    .hero-content > p {
        margin-inline: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image-card {
        height: 500px;
    }

    .floating-card {
        left: 20px;
    }

    .craftsmanship-grid,
    .about-grid,
    .newsletter {
        grid-template-columns: 1fr;
    }

    .craftsmanship-image {
        height: 500px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}


/* =========================================================
   RESPONSIVE — SMALL TABLET
========================================================= */

@media (max-width: 650px) {

    .container {
        width: min(100% - 28px, var(--container));
    }

    .logo-text {
        font-size: 1rem;
    }

    .logo-icon {
        width: 39px;
        height: 39px;
    }

    .icon-button,
    .menu-button {
        width: 40px;
        height: 40px;
    }

    .hero {
        padding: 50px 0 65px;
    }

    .hero-image-card {
        height: 430px;
        border-radius: 120px 120px 18px 18px;
    }

    .floating-card {
        bottom: 20px;
        padding: 12px;
    }

    .hero-features {
        gap: 12px;
    }

    .hero-features div {
        font-size: 0.7rem;
    }

    .categories-section,
    .products-section,
    .about-section {
        padding: 70px 0;
    }

    .category-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-info {
        padding: 14px;
    }

    .product-info h3 {
        font-size: 0.88rem;
    }

    .quick-view {
        display: none;
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 0;
    }

    .craftsmanship-section {
        padding: 75px 0;
    }

    .craftsmanship-image {
        height: 400px;
    }

    .about-card {
        padding: 30px;
    }

    .about-card blockquote {
        font-size: 1.4rem;
    }

    .stats {
        gap: 10px;
    }

    .stats div {
        padding-right: 10px;
    }

    .newsletter {
        gap: 25px;
    }

    .newsletter h2 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
    }

    .newsletter-form input {
        min-height: 45px;
    }

    .newsletter-form .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        padding: 18px 0;
    }

    .modal-grid {
        grid-template-columns: 1fr;
    }

    .modal-image,
    .modal-image img {
        min-height: 300px;
        height: 300px;
    }

    .modal-info {
        padding: 30px 22px;
    }

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

}


/* =========================================================
   RESPONSIVE — PHONE
========================================================= */

@media (max-width: 450px) {

    .header-inner {
        gap: 8px;
    }

    .logo {
        gap: 7px;
    }

    .logo-text small {
        display: none;
    }

    .header-actions {
        gap: 5px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-image-card {
        height: 360px;
    }

    .floating-card {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .category-button {
        min-height: 95px;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-image {
        aspect-ratio: 1;
    }

    .wishlist-btn {
        width: 34px;
        height: 34px;
    }

    .add-cart {
        width: 37px;
        height: 37px;
    }

    .price {
        gap: 3px;
    }

    .price strong {
        font-size: 0.78rem;
    }

    .craftsmanship-image {
        height: 330px;
    }

    .craft-badge {
        width: 95px;
        height: 95px;
        right: 15px;
        bottom: 15px;
    }

    .craft-badge strong {
        font-size: 1.5rem;
    }

    .stats strong {
        font-size: 1.35rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}