/* =========================================================
   TOMMY'S BEAUTY ESSENTIALS
   VERSION 3 — COMPLETE PREMIUM POLISH
   Glossy. Glamorous. Unapologetic.
========================================================= */


/* =========================================================
   1. BRAND VARIABLES
========================================================= */

:root {
    --black: #111111;
    --deep-black: #181818;
    --soft-black: #242424;

    --white: #ffffff;
    --cream: #faf8f5;
    --ivory: #fffdfb;

    --pink: #d63384;
    --deep-pink: #b5266b;
    --blush: #f8e8ef;
    --soft-blush: #fdf3f7;

    --text: #222222;
    --muted: #777777;
    --light-text: #999999;

    --border: #ebe3e7;
    --light-border: #f1ecef;

    --whatsapp: #25d366;

    --shadow-sm: 0 5px 18px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.10);

    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 14px;

    --container: 1400px;
}


/* =========================================================
   2. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

::selection {
    background: var(--pink);
    color: var(--white);
}


/* =========================================================
   3. HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header-main {
    width: 100%;
    max-width: var(--container);

    min-height: 82px;

    margin: 0 auto;
    padding: 0 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   4. BRAND
========================================================= */

.brand-name {
    color: var(--black);

    font-size: 24px;
    font-weight: 700;

    letter-spacing: -0.7px;

    white-space: nowrap;

    transition: color 0.25s ease;
}

.brand-name:hover {
    color: var(--pink);
}


/* =========================================================
   5. HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 18px;
}


/* =========================================================
   6. SEARCH
========================================================= */

.header-actions .search-box {
    margin: 0;
    padding: 0;
}

.header-actions .search-box input {
    width: 280px;
    height: 42px;

    padding: 0 18px;

    background: var(--ivory);

    border: 1px solid #ded8dc;
    border-radius: 30px;

    color: var(--text);

    font-size: 14px;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.header-actions .search-box input::placeholder {
    color: var(--light-text);
}

.header-actions .search-box input:focus {
    background: var(--white);

    border-color: var(--pink);

    box-shadow:
        0 5px 20px rgba(214, 51, 132, 0.10);
}


/* =========================================================
   7. CART LINK
========================================================= */

.header-cart {
    color: var(--black);

    font-size: 15px;
    font-weight: 600;

    white-space: nowrap;

    transition: color 0.25s ease;
}

.header-cart:hover {
    color: var(--pink);
}


/* =========================================================
   8. MOBILE MENU BUTTON
========================================================= */

.mobile-menu-btn {
    display: block;

    padding: 6px;

    background: transparent;

    border: none;

    color: var(--black);

    font-size: 26px;
    line-height: 1;

    box-shadow: none;

    transition: color 0.25s ease;
}

.mobile-menu-btn:hover {
    background: transparent;
    color: var(--pink);

    transform: none;
    box-shadow: none;
}


/* =========================================================
   9. SIDE MENU
========================================================= */

.side-menu {
    position: fixed;

    top: 0;
    right: -380px;

    width: 350px;
    max-width: 88vw;

    height: 100vh;

    padding: 30px;

    background: var(--white);

    z-index: 2000;

    box-shadow:
        -15px 0 45px rgba(0, 0, 0, 0.14);

    transition: right 0.35s ease;

    overflow-y: auto;
}

.side-menu.mobile-menu-open {
    right: 0;
}


/* =========================================================
   10. SIDE MENU HEADER
========================================================= */

.side-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 24px;

    border-bottom: 1px solid var(--border);
}

.side-menu-header h2 {
    color: var(--black);

    font-size: 22px;
}

.close-menu-btn {
    padding: 0;

    background: transparent;

    border: none;

    color: var(--black);

    font-size: 32px;
    line-height: 1;

    box-shadow: none;

    transition: color 0.25s ease;
}

.close-menu-btn:hover {
    background: transparent;

    color: var(--pink);

    transform: none;
    box-shadow: none;
}


/* =========================================================
   11. SIDE MENU LINKS
========================================================= */

.side-menu-links {
    display: flex;
    flex-direction: column;

    margin-top: 25px;
}

.side-menu-links a {
    padding: 16px 5px;

    border-bottom: 1px solid var(--light-border);

    color: var(--text);

    font-size: 16px;
    font-weight: 500;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.side-menu-links a:hover {
    padding-left: 12px;

    color: var(--pink);
}

.side-menu-links .side-cart-link {
    margin-top: 18px;

    padding: 15px 18px;

    background: var(--black);

    border: none;
    border-radius: var(--radius-sm);

    color: var(--white);

    text-align: center;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.side-menu-links .side-cart-link:hover {
    padding-left: 18px;

    background: var(--pink);

    color: var(--white);

    transform: translateY(-2px);
}


/* =========================================================
   12. MENU OVERLAY
========================================================= */

.menu-overlay {
    position: fixed;
    inset: 0;

    z-index: 1500;

    background: rgba(17, 17, 17, 0.42);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.menu-overlay.mobile-menu-open {
    opacity: 1;
    visibility: visible;
}


/* Hide old navigation */

.site-header nav,
header.site-header nav {
    display: none !important;
}


/* =========================================================
   13. HERO
========================================================= */

.hero {
    position: relative;

    min-height: 82vh;

    padding: 100px 20px 90px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            var(--white) 0%,
            var(--cream) 52%,
            var(--soft-blush) 100%
        );
}

.hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -190px;
    left: -150px;

    border-radius: 50%;

    background: var(--blush);

    opacity: 0.55;

    filter: blur(5px);

    pointer-events: none;
}

.hero::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -120px;
    bottom: -120px;

    border-radius: 50%;

    background: rgba(214, 51, 132, 0.07);

    pointer-events: none;
}


/* =========================================================
   14. HERO KICKER
========================================================= */

.hero-standard {
    position: relative;
    z-index: 2;

    margin-bottom: 22px;

    color: var(--deep-pink);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.hero-standard::before,
.hero-standard::after {
    content: "—";

    margin: 0 9px;

    color: var(--pink);
}


/* =========================================================
   15. HERO HEADLINE
========================================================= */

.hero h2 {
    position: relative;
    z-index: 2;

    max-width: 900px;

    margin-bottom: 25px;

    color: var(--black);

    font-size: clamp(44px, 6vw, 72px);

    line-height: 1.04;

    letter-spacing: -2.5px;

    font-weight: 700;
}

.hero h2 .hero-accent {
    color: var(--pink);
}

.hero h2::after {
    display: none;
}


/* =========================================================
   16. HERO DESCRIPTION
========================================================= */

.hero p {
    position: relative;
    z-index: 2;

    max-width: 650px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   17. HERO BUTTONS
========================================================= */

.hero-buttons {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-top: 35px;

    flex-wrap: wrap;
}

.hero-note {
    position: relative;
    z-index: 2;

    margin-top: 32px;

    color: #999;

    font-size: 11px;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


/* =========================================================
   18. BUTTON SYSTEM
========================================================= */

button {
    padding: 13px 28px;

    background: var(--black);

    border: 1px solid var(--black);
    border-radius: var(--radius-sm);

    color: var(--white);

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 0.2px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

button:hover {
    background: var(--pink);
    border-color: var(--pink);

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(214, 51, 132, 0.18);
}

.secondary-btn {
    background: transparent;
    border-color: var(--black);

    color: var(--black);
}

.secondary-btn:hover {
    background: var(--pink);
    border-color: var(--pink);

    color: var(--white);
}


/* =========================================================
   19. STATS
========================================================= */

.stats {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(210px, 1fr));

    gap: 20px;

    padding: 65px 8%;

    background: var(--white);
}

.stat-box {
    padding: 30px 20px;

    background:
        linear-gradient(
            145deg,
            var(--white),
            var(--soft-blush)
        );

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    text-align: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);

    border-color: rgba(214, 51, 132, 0.25);

    box-shadow:
        0 15px 35px rgba(214, 51, 132, 0.08);
}

.stat-box h3 {
    margin-bottom: 8px;

    color: var(--pink);

    font-size: 30px;
}

.stat-box p {
    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   20. SECTION LABELS
========================================================= */

.section-label {
    margin-bottom: 10px;

    color: var(--deep-pink);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    text-align: center;

    text-transform: uppercase;
}


/* =========================================================
   21. CATEGORIES
========================================================= */

.categories {
    padding: 90px 8%;

    background: var(--cream);
}

.categories h2 {
    margin-bottom: 50px;

    color: var(--black);

    font-size: 40px;

    letter-spacing: -1px;

    text-align: center;
}

.categories h2::after,
.collection h2::after,
.page-header h2::after {
    content: "";

    display: block;

    width: 45px;
    height: 3px;

    margin: 15px auto 0;

    background: var(--pink);

    border-radius: 10px;
}

.category-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 18px;

    max-width: 1400px;

    margin: 0 auto;
}

.category-card {
    position: relative;

    min-height: 190px;

    padding: 28px 24px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius-sm);

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.category-card::before {
    content: "";

    position: absolute;

    top: -55px;
    right: -55px;

    width: 130px;
    height: 130px;

    border-radius: 50%;

    background: var(--soft-blush);

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}

.category-card::after {
    content: "";

    position: absolute;

    top: 24px;
    left: 24px;

    width: 28px;
    height: 2px;

    background: var(--pink);

    transition: width 0.35s ease;
}

.category-card:hover {
    transform: translateY(-6px);

    border-color: rgba(214, 51, 132, 0.28);

    box-shadow: var(--shadow-md);
}

.category-card:hover::before {
    transform: scale(1.5);

    background: var(--blush);
}

.category-card:hover::after {
    width: 48px;
}

.category-card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 9px;

    color: var(--black);

    font-size: 17px;

    line-height: 1.35;

    transition: color 0.3s ease;
}

.category-card:hover h3 {
    color: var(--pink);
}

.category-card p {
    position: relative;
    z-index: 2;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   22. ABOUT
========================================================= */

.about {
    padding: 85px 8%;

    background:
        linear-gradient(
            135deg,
            var(--soft-blush),
            var(--cream)
        );

    text-align: center;
}

.about h2 {
    margin-bottom: 45px;

    color: var(--black);

    font-size: 38px;
}

.about-container {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));

    gap: 25px;
}

.about-box {
    padding: 30px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.about-box:hover {
    transform: translateY(-6px);

    border-color: rgba(214, 51, 132, 0.20);

    box-shadow:
        0 15px 30px rgba(214, 51, 132, 0.08);
}

.about-box h3 {
    margin-bottom: 12px;

    color: var(--black);
}

.about-box p {
    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   23. TOMMY'S STANDARD
========================================================= */

.tommys-standard {
    position: relative;

    max-width: 760px;

    margin: 55px auto 0;

    padding: 30px 35px;

    background: rgba(255, 255, 255, 0.72);

    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.tommys-standard::before {
    content: "“";

    position: absolute;

    top: 3px;
    left: 20px;

    color: rgba(214, 51, 132, 0.15);

    font-size: 55px;

    line-height: 1;
}

.standard-label {
    margin-bottom: 8px;

    color: var(--deep-pink);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.tommys-standard h3 {
    margin-bottom: 8px;

    color: var(--black);

    font-size: 21px;
}

.tommys-standard > p:last-child {
    max-width: 600px;

    margin: 0 auto;

    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   24. PRODUCTS
========================================================= */

.products {
    padding: 85px 8%;

    background: var(--white);

    text-align: center;
}

.products h2 {
    margin-bottom: 12px;

    color: var(--black);

    font-size: 40px;

    letter-spacing: -1px;
}

.section-intro {
    max-width: 620px;

    margin: 0 auto;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.7;
}

.product-container {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(260px, 1fr));

    gap: 28px;

    margin-top: 35px;
align-items: stretch;
}

.product-card {
    padding: 18px;

    display: flex;
    flex-direction: column;
    height: 100%;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    text-align: center;

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-7px);

    border-color: rgba(214, 51, 132, 0.22);

    box-shadow: var(--shadow-lg);
}

.product-card img {
    width: 100%;
    height: 280px;

    padding: 12px;

    object-fit: contain;

    background:
        linear-gradient(
            145deg,
            var(--cream),
            var(--soft-blush)
        );

    border-radius: var(--radius-md);

    transition: transform 0.35s ease;
}

.product-card:hover img {
    transform: scale(1.025);
}

.product-card h3 {
    margin: 18px 0 8px;

    color: var(--text);

    font-size: 20px;
}

.price {
    margin-bottom: 10px;

    color: var(--pink);

    font-size: 19px;
    font-weight: 700;
}

.product-description {
    min-height: 70px;

    flex: 1;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}

.product-card button {
    width: 100%;

    margin-top: 18px;
}


/* =========================================================
   25. PAGE HEADERS
========================================================= */

.page-header {
    padding: 75px 20px 40px;

    background:
        linear-gradient(
            135deg,
            var(--white),
            var(--soft-blush)
        );

    text-align: center;
}

.page-header h2 {
    margin-bottom: 12px;

    color: var(--black);

    font-size: 44px;

    letter-spacing: -1px;
}

.page-header p {
    max-width: 700px;

    margin: 20px auto 0;

    color: var(--muted);

    font-size: 17px;
}


/* =========================================================
   26. COLLECTION
========================================================= */

.collection {
    max-width: 1250px;

    margin: 0 auto;

    padding: 65px 20px;
}

.collection h2 {
    color: var(--black);

    font-size: 40px;

    letter-spacing: -1px;

    text-align: center;
}

.collection > p {
    max-width: 700px;

    margin: 20px auto 40px;

    color: var(--muted);

    text-align: center;
}


/* =========================================================
   27. SEARCH
========================================================= */

.search-box {
    margin: 25px 0;

    text-align: center;
}

.search-box input {
    width: 90%;
    max-width: 500px;

    padding: 14px 20px;

    background: var(--white);

    border: 1px solid #ddd;
    border-radius: 30px;

    color: var(--text);

    font-size: 15px;

    outline: none;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.search-box input:focus {
    border-color: var(--pink);

    box-shadow:
        0 4px 15px rgba(214, 51, 132, 0.10);
}


/* =========================================================
   28. SORT
========================================================= */

.sort-box {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 10px;

    margin: 20px 0;
}

.sort-box select {
    padding: 10px 15px;

    background: var(--white);

    border: 1px solid #ddd;
    border-radius: 6px;

    color: var(--text);

    font-size: 14px;

    outline: none;
}

.sort-box select:focus {
    border-color: var(--pink);
}


/* =========================================================
   29. CART
========================================================= */

.cart-item {
    margin: 20px 0;

    padding: 25px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);
}

.cart-item h3 {
    margin-bottom: 10px;

    color: var(--black);
}

.quantity-controls {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    margin: 18px 0;
}

.quantity-controls button {
    width: 40px;
    height: 40px;

    padding: 0;

    border-radius: 50%;

    font-size: 18px;
}

.quantity-controls span {
    font-size: 17px;
    font-weight: 700;
}

.checkout-btn {
    margin-top: 20px;
}

.clear-cart-btn {
    margin-right: 15px;

    background: var(--soft-black);

    border-color: var(--soft-black);
}

.clear-cart-btn:hover {
    background: var(--pink);

    border-color: var(--pink);
}


/* =========================================================
   30. CHECKOUT
========================================================= */

.checkout-form {
    max-width: 650px;

    margin: 50px auto;

    display: flex;
    flex-direction: column;

    gap: 18px;
}

.checkout-form h3 {
    color: var(--black);
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;

    padding: 15px;

    background: var(--white);

    border: 1px solid #ddd;
    border-radius: 7px;

    color: var(--text);

    font-size: 15px;

    outline: none;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.checkout-form textarea {
    min-height: 120px;

    resize: vertical;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
    border-color: var(--pink);

    box-shadow:
        0 4px 15px rgba(214, 51, 132, 0.08);
}


/* =========================================================
   31. CHECKOUT SUMMARY
========================================================= */

.checkout-summary {
    margin: 20px 0 30px;

    padding: 20px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);
}

.checkout-summary-item {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 12px 0;

    font-size: 15px;
}

.checkout-summary-item span {
    color: #444;
}

.checkout-summary-item strong {
    color: var(--black);

    white-space: nowrap;
}

.checkout-summary hr {
    margin: 12px 0;

    border: none;
    border-top: 1px solid var(--border);
}

.checkout-summary-total {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-top: 8px;

    font-size: 18px;
}

.checkout-summary-total strong:last-child {
    color: var(--pink);

    font-size: 20px;
}


/* =========================================================
   32. PAYMENT CARD
========================================================= */

.payment-card {
    margin: 20px 0 30px;

    padding: 22px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);
}

.payment-card h4 {
    margin-bottom: 8px;

    color: var(--black);

    font-size: 19px;
}

.payment-instruction {
    margin-bottom: 20px;

    color: #666;
}

.payment-detail {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 13px 0;

    border-bottom: 1px solid var(--light-border);
}

.payment-detail span {
    color: var(--muted);
}

.payment-detail strong {
    color: var(--black);

    text-align: right;
}

.payment-warning {
    margin-top: 18px;

    padding: 13px;

    background: var(--soft-blush);

    border-left: 3px solid var(--pink);
    border-radius: 8px;

    font-size: 14px;

    line-height: 1.5;
}

.payment-note {
    margin-top: 18px;

    color: #555;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   33. OUT OF STOCK
========================================================= */

.out-of-stock-btn {
    width: 100%;

    padding: 12px 18px;

    background: #dedede;

    border: none;
    border-radius: 5px;

    color: #666;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.5px;

    text-transform: uppercase;

    cursor: not-allowed;

    box-shadow: none;
}

.out-of-stock-btn:hover {
    background: #dedede;

    color: #666;

    transform: none;

    box-shadow: none;
}


/* =========================================================
   34. NEWSLETTER
========================================================= */

.newsletter {
    position: relative;

    overflow: hidden;

    padding: 85px 20px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255, 255, 255, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(255, 255, 255, 0.10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--deep-pink),
            var(--pink) 50%,
            #e05a9a
        );

    color: var(--white);

    text-align: center;
}

.newsletter h2 {
    margin-bottom: 15px;

    color: var(--white);

    font-size: 40px;
}

.newsletter p {
    max-width: 650px;

    margin: 0 auto 30px;

    color: rgba(255, 255, 255, 0.92);
}

.newsletter-label {
    margin-bottom: 12px;

    color: rgba(255, 255, 255, 0.85);
}

.newsletter form {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}

.newsletter input {
    width: 320px;

    padding: 15px;

    background: var(--white);

    border: none;
    border-radius: 4px;

    font-size: 15px;

    outline: none;
}

.newsletter button {
    background: var(--white);

    border-color: var(--white);

    color: var(--deep-pink);
}

.newsletter button:hover {
    background: var(--black);

    border-color: var(--black);

    color: var(--white);
}


/* =========================================================
   35. FOOTER
========================================================= */

footer {
    padding: 65px 8%;

    background:
        linear-gradient(
            135deg,
            var(--deep-black),
            #21151c
        );

    border-top: 3px solid var(--pink);

    color: var(--white);

    text-align: center;
}

footer h2,
footer h3 {
    margin-bottom: 18px;

    color: var(--white);
}

footer h2 {
    font-size: 25px;
}

footer p {
    margin: 9px 0;

    color: #d7d7d7;

    font-size: 14px;
}

footer p:last-child {
    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);

    color: #aaa;
}

footer a {
    color: #f39ac0;

    transition: color 0.25s ease;
}

footer a:hover {
    color: var(--white);
}


/* =========================================================
   36. WHATSAPP
========================================================= */

.whatsapp-btn {
    position: fixed;

    right: 25px;
    bottom: 80px;

    width: 58px;
    height: 58px;

    z-index: 1100;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--whatsapp);

    border-radius: 50%;

    color: var(--white);

    font-size: 28px;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.20);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.08);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   37. PREMIUM CART TOAST
========================================================= */

#cartToast {
    position: fixed;

    right: 25px;
    bottom: 95px;

    width: min(380px, calc(100vw - 40px));

    z-index: 3000;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 15px 16px;

    background: var(--white);

    border: 1px solid var(--border);
    border-left: 3px solid var(--pink);
    border-radius: 7px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.14);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(20px)
        translateX(10px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
}

#cartToast.show {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0)
        translateX(0);
}

.cart-toast-icon {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--soft-blush);

    border-radius: 50%;

    color: var(--pink);

    font-size: 17px;
    font-weight: 700;
}

.cart-toast-content {
    min-width: 0;

    flex: 1;

    display: flex;
    flex-direction: column;

    gap: 2px;
}

.cart-toast-content strong {
    color: var(--black);

    font-size: 14px;
    font-weight: 700;
}

.cart-toast-content span {
    overflow: hidden;

    color: var(--muted);

    font-size: 12px;

    white-space: nowrap;

    text-overflow: ellipsis;
}

.cart-toast-link {
    flex-shrink: 0;

    color: var(--pink);

    font-size: 12px;
    font-weight: 700;

    transition: color 0.2s ease;
}

.cart-toast-link:hover {
    color: var(--deep-pink);
}


/* =========================================================
   38. ACCESSIBILITY
========================================================= */

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--pink);

    outline-offset: 3px;
}


/* =========================================================
   39. TABLET
========================================================= */

@media (max-width: 1100px) {

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================================================
   40. MOBILE
========================================================= */

@media (max-width: 768px) {

    .header-main {
        min-height: 70px;

        padding: 0 18px;

        gap: 12px;
    }

    .brand-name {
        font-size: 18px;
    }

    .header-actions {
        gap: 10px;
    }

    .header-actions .search-box input {
        width: 150px;
        height: 38px;

        font-size: 13px;
    }

    .header-cart {
        font-size: 0;
    }

    .header-cart::before {
        content: "🛒";

        font-size: 20px;
    }

    .mobile-menu-btn {
        font-size: 24px;
    }


    /* HERO */

    .hero {
        min-height: 70vh;

        padding: 65px 20px;
    }

    .hero-standard {
        font-size: 10px;

        letter-spacing: 1.8px;
    }

    .hero h2 {
        font-size: 40px;

        letter-spacing: -1px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        width: 100%;
        max-width: 330px;

        flex-direction: column;
    }

    .hero-buttons a,
    .hero-buttons button {
        width: 100%;
    }


    /* STATS */

    .stats {
        grid-template-columns: repeat(2, 1fr);

        padding: 55px 20px;

        gap: 15px;
    }

    .stat-box {
        padding: 22px 15px;
    }

    .stat-box h3 {
        font-size: 25px;
    }


    /* MAIN SECTIONS */

    .categories,
    .products,
    .about {
        padding: 65px 20px;
    }

    .categories h2,
    .products h2,
    .about h2,
    .page-header h2,
    .collection h2 {
        font-size: 32px;
    }

    .section-label {
        font-size: 10px;

        letter-spacing: 1.6px;
    }


    /* CATEGORIES */

    .category-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 14px;
    }

    .category-card {
        min-height: 175px;

        padding: 24px 20px;
    }


    /* STANDARD */

    .tommys-standard {
        margin-top: 40px;

        padding: 25px 20px;
    }

    .tommys-standard h3 {
        font-size: 18px;
    }


    /* PRODUCTS */

    .product-container {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 15px;
    }

    .product-card {
        padding: 14px;
    }

    .product-card img {
        height: 210px;
    }

    .product-card h3 {
        font-size: 17px;
    }

    .price {
        font-size: 17px;
    }

    .product-description {
        font-size: 13px;
    }


    /* SORT */

    .sort-box {
        justify-content: center;
    }


    /* CHECKOUT */

    .checkout-form {
        margin: 35px 20px;
    }


    /* NEWSLETTER */

    .newsletter {
        padding: 65px 20px;
    }

    .newsletter h2 {
        font-size: 32px;
    }

    .newsletter input,
    .newsletter button {
        width: 100%;
    }


    /* FOOTER */

    footer {
        padding: 45px 20px;
    }


    /* CART TOAST */

    #cartToast {
        right: 15px;
        bottom: 85px;

        width: calc(100vw - 30px);

        padding: 14px;
    }

    .cart-toast-link {
        font-size: 11px;
    }


    /* WHATSAPP */

    .whatsapp-btn {
        width: 54px;
        height: 54px;

        right: 18px;
        bottom: 75px;

        font-size: 25px;
    }
}


/* =========================================================
   41. SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .header-main {
        padding: 0 14px;
    }

    .brand-name {
        font-size: 16px;
    }

    .header-actions .search-box input {
        width: 115px;
    }

    .side-menu {
        width: 300px;

        padding: 25px;
    }

    .side-menu-header h2 {
        font-size: 18px;
    }


    /* HERO */

    .hero {
        padding: 65px 18px;
    }

    .hero-standard {
        font-size: 9px;

        letter-spacing: 1.4px;
    }

    .hero h2 {
        font-size: 35px;

        letter-spacing: -1.2px;
    }

    .hero p {
        font-size: 15px;

        line-height: 1.7;
    }

    .hero-note {
        font-size: 9px;

        letter-spacing: 1px;
    }


    /* STATS */

    .stats {
        grid-template-columns: 1fr;
    }


    /* PRODUCTS */

    .product-container {
        grid-template-columns: 1fr;
    }

    .product-card img {
        height: 250px;
    }


    /* CHECKOUT */

    .checkout-summary-item,
    .payment-detail {
        flex-direction: column;

        align-items: flex-start;

        gap: 5px;
    }

    .payment-detail strong {
        text-align: left;
    }


    /* COLLECTION */

    .collection {
        padding: 50px 15px;
    }
}


/* =========================================================
   42. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;

        animation-duration: 0.01ms !important;
    }
}