/*
Theme Name: LittleSoak Custom
Theme URI: https://darkblue-pony-103110.hostingersite.com/
Author: LittleSoak
Description: Custom coded WordPress theme for LittleSoak.
Version: 1.0
*/

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #172033;
    line-height: 1.6;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e8edf3;
    box-shadow: 0 2px 12px rgba(20, 35, 60, 0.05);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #102a43;
}

.site-logo::after {
    content: ".";
    color: #f28c28;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-navigation a {
    font-size: 15px;
    font-weight: 600;
    color: #526174;
    transition: 0.25s ease;
}

.main-navigation a:hover {
    color: #f28c28;
}

.hero-section {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 25%, rgba(242, 140, 40, 0.18), transparent 28%),
        linear-gradient(135deg, #f4f8fb 0%, #ffffff 55%, #eef5f8 100%);
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -100px;
    bottom: -160px;
    border-radius: 50%;
    background: rgba(16, 42, 67, 0.06);
}

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

.hero-text {
    max-width: 680px;
}

.hero-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 30px;
    background: #fff2e5;
    color: #d96f0b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.hero-text h1 {
    margin: 0 0 22px;
    font-size: clamp(46px, 6vw, 76px);
    line-height: 1.04;
    letter-spacing: -3px;
    color: #102a43;
}

.hero-text p {
    max-width: 570px;
    margin: 0 0 32px;
    font-size: 19px;
    color: #607084;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 27px;
    border-radius: 8px;
    background: #f28c28;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(242, 140, 40, 0.25);
    transition: 0.25s ease;
}

.hero-button:hover {
    transform: translateY(-2px);
    background: #dc7414;
}

.categories-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-heading {
    max-width: 650px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading span,
.section-label {
    display: block;
    margin-bottom: 10px;
    color: #f28c28;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.section-heading h2 {
    margin: 0 0 12px;
    color: #102a43;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.section-heading p {
    margin: 0;
    color: #718096;
    font-size: 16px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.category-card {
    padding: 32px;
    border: 1px solid #e6ebf0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(16, 42, 67, 0.05);
    transition: 0.25s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    border-color: #f5c28f;
    box-shadow: 0 18px 35px rgba(16, 42, 67, 0.10);
}

.category-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 12px;
    background: #fff4e9;
    font-size: 27px;
}

.category-card h3 {
    margin: 0 0 8px;
    color: #102a43;
    font-size: 19px;
}

.category-card p {
    margin: 0;
    color: #718096;
    font-size: 14px;
}

.about-section {
    padding: 95px 0;
    background: #f5f8fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.about-content h2 {
    margin: 0;
    color: #102a43;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.about-content p {
    margin: 0;
    color: #617286;
    font-size: 18px;
    line-height: 1.8;
}

.contact-section {
    padding: 100px 0;
    text-align: center;
    background: #102a43;
}

.contact-content {
    max-width: 720px;
}

.contact-section .section-label {
    color: #f5a04f;
}

.contact-section h2 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: clamp(35px, 5vw, 55px);
    letter-spacing: -1.5px;
}

.contact-section p {
    margin: 0 auto 30px;
    color: #c9d5df;
    font-size: 17px;
}

.site-footer {
    padding: 35px 0;
    background: #0b2033;
    color: #aebdca;
}

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

.footer-inner strong {
    color: #ffffff;
    font-size: 20px;
}

.footer-inner p {
    margin: 5px 0 0;
    font-size: 13px;
}

@media (max-width: 850px) {
    .main-navigation {
        gap: 18px;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding: 12px 0;
    }

    .main-navigation {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-section {
        min-height: 510px;
    }

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

    .hero-text h1 {
        font-size: 43px;
        letter-spacing: -1.5px;
    }

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

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

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 600px) {

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

    .header-inner {
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding: 12px 0;
    }

    .main-navigation {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-section {
        min-height: 510px;
    }

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

    .hero-text h1 {
        font-size: 43px;
        letter-spacing: -1.5px;
    }

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

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

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}


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

.featured-products-section {
    padding: 100px 0;
    background: #f8fafc;
}

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

.product-card {
    background: #ffffff;
    border: 1px solid #e7edf3;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(16, 42, 67, 0.06);
    transition: 0.25s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(16, 42, 67, 0.12);
}

.product-image-placeholder {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #7b8794;
    font-size: 14px;
    font-weight: 600;
}

.product-info {
    padding: 22px;
}

.product-category {
    display: block;
    margin-bottom: 7px;
    color: #f28c28;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-info h3 {
    margin: 0 0 16px;
    color: #102a43;
    font-size: 18px;
    line-height: 1.35;
}

.product-link {
    display: inline-block;
    color: #102a43;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 2px solid #f28c28;
    padding-bottom: 3px;
}

.product-link:hover {
    color: #f28c28;
}


/* =========================
   FEATURED PRODUCTS TABLET
========================= */

@media (max-width: 850px) {

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


/* =========================
   FEATURED PRODUCTS MOBILE
========================= */

@media (max-width: 600px) {

    .featured-products-section {
        padding: 70px 0;
    }

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

    .product-image-placeholder {
        height: 240px;
    }
}
   /* =========================================================
   FEATURED PRODUCTS SECTION
========================================================= */

.featured-products-section {
    padding: 100px 0;
    background: #ffffff;
}

.featured-products-section .section-heading {
    max-width: 650px;
    margin: 0 auto 45px;
    text-align: center;
}

.product-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
    width: 100%;
}

.product-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5ebf1;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(16, 42, 67, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(16, 42, 67, 0.13);
}

.product-image-placeholder {
    width: 100%;
    height: 280px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #f4f7f9;
    color: #8794a2;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid #edf1f5;
}

.product-info {
    padding: 22px;
}

.product-category {
    display: block;
    margin-bottom: 8px;
    color: #f28c28;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.product-info h3 {
    margin: 0 0 17px;
    color: #102a43;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.product-link {
    display: inline-block;
    color: #102a43;
    font-size: 14px;
    font-weight: 700;
    padding-bottom: 3px;
    border-bottom: 2px solid #f28c28;
}

.product-link:hover {
    color: #f28c28;
}


/* =========================================================
   FEATURED PRODUCTS - TABLET
========================================================= */

@media (max-width: 900px) {

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

}


/* =========================================================
   FEATURED PRODUCTS - MOBILE
========================================================= */

@media (max-width: 600px) {

    .featured-products-section {
        padding: 70px 0;
    }

    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .product-image-placeholder {
        height: 240px;
    }

    .product-info {
        padding: 20px;
    }

}
/* =========================
   SHOP PRODUCTS
========================= */

.products-section {
    padding: 100px 0;
    background: #f8fafc;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e6ebf0;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(16, 42, 67, 0.06);
    transition: 0.25s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(16, 42, 67, 0.12);
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 14px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.product-category {
    margin: 18px 18px 7px;
    color: #f28c28;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 0 18px 18px;
    color: #102a43;
    font-size: 17px;
    line-height: 1.35;
    min-height: 46px;
}

.product-bottom {
    margin-top: auto;
    padding: 0 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.product-bottom strong {
    color: #102a43;
    font-size: 21px;
}

.product-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 39px;
    padding: 0 14px;
    border-radius: 7px;
    background: #f28c28;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    transition: 0.2s ease;
}

.product-button:hover {
    background: #dc7414;
}

/* TABLET */

@media (max-width: 1050px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */

@media (max-width: 520px) {
    .products-section {
        padding: 70px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

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

    .product-card h3 {
        min-height: auto;
    }
}
/* =========================
   SINGLE PRODUCT PAGE
========================= */

.single-product-page {
    padding: 70px 0 100px;
    background: #ffffff;
}

.back-to-shop {
    display: inline-block;
    margin-bottom: 28px;
    color: #526174;
    font-size: 14px;
    font-weight: 600;
}

.back-to-shop:hover {
    color: #f28c28;
}

.single-product-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: start;
}

.single-product-image {
    background: #ffffff;
    border: 1px solid #e6ebf0;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 28px rgba(16, 42, 67, 0.06);
}

.single-product-image img {
    width: 100%;
    max-height: 650px;
    object-fit: contain;
    border-radius: 12px;
}

.single-product-info {
    padding-top: 20px;
}

.single-product-category {
    display: inline-block;
    margin-bottom: 14px;
    color: #f28c28;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.single-product-info h1 {
    margin: 0 0 18px;
    color: #102a43;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.single-product-price {
    margin-bottom: 24px;
    color: #102a43;
    font-size: 34px;
    font-weight: 800;
}

.single-product-description {
    margin: 0 0 28px;
    color: #617286;
    font-size: 17px;
    line-height: 1.8;
}

.single-product-benefits {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
    padding: 22px;
    background: #f7f9fb;
    border-radius: 12px;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
}

.single-add-cart {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 9px;
    background: #f28c28;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
}

.single-add-cart:hover {
    background: #dc7414;
    transform: translateY(-2px);
}

@media (max-width: 850px) {
    .single-product-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .single-product-image img {
        max-height: 520px;
    }

    .single-product-info {
        padding-top: 0;
    }
}

@media (max-width: 520px) {
    .single-product-page {
        padding: 45px 0 70px;
    }

    .single-product-image {
        padding: 14px;
    }

    .single-product-info h1 {
        font-size: 34px;
    }

    .single-product-price {
        font-size: 28px;
    }
}