* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --brand-primary: #173349;
    --brand-accent: #CF8162;
    --brand-light: #FFFFFF;
    --primary-dark: #0F2331;
    --primary-light: #2A4E68;
    --accent-dark: #B66F51;
    --accent-light: #DA9B84;
    --bg-light: #F7F9FB;
    --text-dark: #0D0D0D;
    --text-medium: #4A4A4A;
}

body {
    font-family: var(--font-body);
    background: var(--brand-light);
    color: var(--text-dark);
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

h1,
h2,
h3,
.heading {
    font-family: var(--font-heading);
}

:root {
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --brand-primary: #173349;
    --brand-accent: #CF8162;
    --brand-light: #FFFFFF;
    --primary-dark: #0F2331;
    --primary-light: #2A4E68;
    --accent-dark: #B66F51;
    --accent-light: #DA9B84;
    --bg-light: #F7F9FB;
    --text-dark: #0D0D0D;
    --text-medium: #4A4A4A;
}


/* WRAPPER */

.sp-product-wrapper {
    padding: 80px 5%;
    background: var(--bg-light);
    font-family: var(--font-body);
}

.sp-product-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}


/* LEFT GALLERY */

.sp-product-gallery {
    width: 100%;
}

.sp-main-img-box {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.sp-main-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: 0.4s ease;
}

.sp-thumb-row {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.sp-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s ease;
}

.sp-thumb:hover {
    transform: scale(1.05);
}

.active-thumb {
    border-color: var(--brand-primary);
    transform: scale(1.05);
}


/* Mobile */

@media (max-width: 600px) {
    .sp-thumb {
        width: 65px;
        height: 65px;
    }
}


/* RIGHT CONTENT */

.sp-title {
    font-size: 32px;
    font-family: var(--font-heading);
    color: var(--brand-primary);
    line-height: 1.3;
}

.sp-rating {
    margin: 10px 0 15px;
    color: #e69a00;
    font-size: 18px;
}

.sp-rating span {
    color: var(--text-medium);
    margin-left: 5px;
    font-size: 15px;
}

.sp-price {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 10px;
}

.sp-tax,
.sp-sku {
    color: var(--text-medium);
    font-size: 14px;
}


/* HIGHLIGHT BOX */

.sp-highlights {
    background: var(--brand-light);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border: 2px solid rgba(23, 51, 73, 0.15);
}

.sp-high-item {
    display: flex;
    gap: 10px;
    margin: 12px 0;
    color: var(--text-dark);
    font-size: 15px;
}

.sp-high-item i {
    color: var(--brand-primary);
    font-size: 20px;
    min-width: 22px;
}


/* Read More */

.sp-readmore {
    background: var(--accent-light);
    color: #fff;
    padding: 8px 18px;
    border: none;
    border-radius: 20px;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.sp-readmore:hover {
    background: var(--accent-dark);
}


/* CART AREA */

.sp-cart-area {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}

.sp-qty {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 50px;
}

.sp-qty button {
    padding: 10px 18px;
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
}

.sp-qty input {
    width: 40px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 18px;
}

.sp-add-cart {
    flex: 1;
    padding: 14px 20px;
    background: var(--primary-dark);
    color: var(--brand-light);
    border: none;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.sp-add-cart:hover {
    background: var(--primary-light);
}


/* RESPONSIVE */

@media(max-width: 992px) {
    .sp-product-container {
        grid-template-columns: 1fr;
    }
}


/* ------------------ USP SECTION ------------------ */


/* MAIN SECTION */

.usp-premium {
    width: 100%;
    padding: 45px 6%;
    background: linear-gradient(135deg, var(--brand-primary), var(--primary-light));
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    /* border-radius: 12px; */
    margin-top: 20px;
}


/* USP BOX */

.usp-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    padding: 22px 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.usp-box:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}


/* ICON STYLE */

.usp-icon i {
    font-size: 30px;
    color: var(--accent-light);
    transition: 0.35s ease;
}

.usp-box:hover .usp-icon i {
    transform: rotate(10deg) scale(1.1);
    color: var(--brand-light);
}


/* TEXT STYLE */

.usp-text {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--brand-light);
    line-height: 20px;
    font-weight: 500;
}


/* RESPONSIVE */

@media (max-width: 900px) {
    .usp-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .usp-premium {
        grid-template-columns: 1fr;
    }
}


/* ------------------ TABS ------------------ */

.product-tabs {
    /* margin-top: 30px; */
    background: #fff;
    padding: 20px 0;
    margin-left: 10px;
    margin-right: 10px;
}

.tabs-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--primary-light);
}

.tab {
    padding: 18px 10px;
    text-align: center;
    font-family: var(--font-body);
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    letter-spacing: .5px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.tab:last-child {
    border-right: none;
}

.tab.active {
    background: var(--brand-accent);
    font-weight: 600;
}

.tabs-body {
    padding: 30px;
}

.tab-content {
    display: none;
    animation: fade .4s ease-in-out;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--brand-primary);
}

.tab-content p,
.tab-content li {
    font-family: var(--font-body);
    color: var(--text-medium);
    font-size: 16px;
    line-height: 26px;
}

.tab-content ul {
    margin-left: 18px;
    list-style: disc;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .product-usps {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
    .tabs-header {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .product-usps {
        grid-template-columns: 1fr;
    }
}


/* image only */

.single-image-section {
    width: 100%;
    padding: 10px 6%;
    display: flex;
    justify-content: center;
}

.single-image-wrapper {
    width: 100%;
    /* max-width: 1300px; */
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); */
    transition: 0.4s ease;
    /* border: 2px solid var(--brand-primary); */
    background: var(--bg-light);
}

.single-image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.20);
}

.single-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.5s ease;
}


/* Image zoom effect on hover */

.single-image-wrapper:hover img {
    transform: scale(1.05);
}


/* Responsive */

@media (max-width: 768px) {
    .single-image-section {
        padding: 30px 4%;
    }
    .single-image-wrapper {
        border-radius: 14px;
    }
}


/* image only */


/* Section with fixed background */

.product-section {
    background: url('../images/background-images/product-flakes-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-box {
    background: var(--brand-light);
    max-width: 900px;
    padding: 50px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.content-box h5 {
    font-family: var(--font-body);
    color: var(--brand-accent);
    font-size: 16px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-box h2 {
    font-family: var(--font-heading);
    color: var(--brand-primary);
    font-size: 36px;
    margin: 0 0 20px 0;
}

.content-box p {
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.6;
}


/* Small images below content */

.image-row {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
    flex-wrap: wrap;
}

.image-row img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--brand-accent);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.image-row img:nth-child(1) {
    animation-delay: 0.2s;
}

.image-row img:nth-child(2) {
    animation-delay: 0.4s;
}

.image-row img:nth-child(3) {
    animation-delay: 0.6s;
}

.image-row img:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive */

@media (max-width: 768px) {
    .content-box {
        padding: 30px 20px;
    }
    .content-box h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .content-box h2 {
        font-size: 24px;
    }
    .image-row img {
        width: 60px;
        height: 60px;
    }
}

.bulk-section {
    position: relative;
    background: url('../images/background-images/bulk-bg.png') center/cover no-repeat fixed;
    padding: 100px 20px;
    text-align: center;
    color: var(--text-dark);
}

.bulk-section h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--brand-primary);
}

.bulk-section p {
    font-size: 1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.bulk-section .btn-contact {
    display: inline-block;
    background-color: var(--brand-primary);
    color: var(--brand-light);
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s ease;
}

.bulk-section .btn-contact:hover {
    background-color: var(--brand-accent);
}

@media (max-width: 768px) {
    .bulk-section {
        padding: 80px 15px;
    }
    .bulk-section h1 {
        font-size: 2rem;
    }
    .bulk-section p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .bulk-section {
        padding: 60px 10px;
    }
    .bulk-section h1 {
        font-size: 1.6rem;
    }
    .bulk-section p {
        font-size: 0.9rem;
    }
}


/* -----------------------------------------
   PREMIUM NUTRITION SECTION STYLING
------------------------------------------ */

.sp-nutrition-box {
    margin-top: 5px;
    padding: 15px;
    border-radius: 18px;
    background: linear-gradient(145deg, #ffffff, #f5f7fa);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
    animation: fadeInUp 0.8s ease forwards;
}

.sp-nutri-head {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 22px;
    position: relative;
}

.sp-nutri-head::after {
    content: "";
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    display: block;
    margin-top: 6px;
}

.sp-nutri-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 22px;
}


/* Each nutritional item */

.nutri-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nutri-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
}


/* Main icon styling */

.nutri-item i {
    font-size: 22px;
    padding: 12px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.10);
    transition: .3s ease;
}


/* Icon colors */

.icon-vitamin {
    color: #E63946;
}

.icon-energy {
    color: #FF8C42;
}

.icon-shield {
    color: #457B9D;
}

.icon-heart {
    color: #C9184A;
}

.icon-fiber {
    color: #2A9D8F;
}

.icon-mineral {
    color: #1D3557;
}


/* Hover animation */

.nutri-item:hover i {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}


/* Text */

.nutri-item span {
    font-size: 15.5px;
    font-weight: 600;
    color: #333;
}


/* Smooth appearance */

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive */

@media (max-width: 768px) {
    .sp-nutri-grid {
        grid-template-columns: 1fr;
    }
    .sp-nutrition-box {
        padding: 24px;
    }
}


/* APPLICATION SECTION */


/* 
.sp-application-box {
    margin-top: 40px;
    padding: 28px;
    background: linear-gradient(135deg, #f7f9fb, #ffffff);
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.sp-app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.sp-app-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    cursor: default;
}

.sp-app-item i {
    font-size: 20px;
    color: var(--brand-accent);
    background: rgba(207, 129, 98, 0.12);
    padding: 12px;
    border-radius: 12px;
    flex-shrink: 0;
}

.sp-app-item span {
    font-size: 14.5px;
    color: var(--text-medium);
    line-height: 1.5;
    font-weight: 500;
}




.sp-app-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    border-color: var(--brand-accent);
}

.sp-app-item:hover i {
    background: var(--brand-accent);
    color: #fff;
}




@media (max-width: 576px) {
    .sp-application-box {
        padding: 22px;
    }
    .sp-app-item {
        padding: 14px;
    }
    .sp-app-item span {
        font-size: 14px;
    }
} */

.spf-app-ultra {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

.spf-app-wrap {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 90px;
    align-items: center;
}


/* LEFT */

.spf-app-left .spf-tag {
    display: inline-block;
    background: rgba(207, 129, 98, 0.15);
    color: var(--brand-accent);
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 12px;
    margin-bottom: 22px;
}

.spf-app-left h2 {
    font-family: var(--font-heading);
    font-size: 52px;
    color: var(--brand-primary);
    line-height: 1.1;
    margin-bottom: 24px;
}

.spf-app-left h2 span {
    color: var(--brand-accent);
}

.spf-app-left p {
    font-size: 16.5px;
    color: var(--text-medium);
    line-height: 1.8;
    max-width: 460px;
}


/* RIGHT */

.spf-app-right {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
}

.spf-app-right::before {
    content: "";
    position: absolute;
    left: -40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient( to bottom, transparent, var(--brand-accent), transparent);
    border-radius: 5px;
}


/* ROW */

.spf-app-row {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 26px 30px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.spf-app-row i {
    font-size: 26px;
    color: var(--brand-accent);
    background: rgba(207, 129, 98, 0.18);
    padding: 16px;
    border-radius: 16px;
    flex-shrink: 0;
}

.spf-app-row p {
    font-size: 15.5px;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.spf-app-row:hover {
    transform: translateX(10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .spf-app-wrap {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .spf-app-right::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .spf-app-left h2 {
        font-size: 36px;
    }
    .spf-app-row {
        padding: 22px;
    }
}