/* Base styles */
:root {
    --accent: #5b8cff;
    --accent-2: #c7e22b;
    /* green accent used across product details */
    --muted: #6c757d;
}

html,
body {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    background: linear-gradient(180deg, #f6f9fc, #ffffff);
    color: #212529;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0 !important;
    width: 100% !important;
}

main {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* Hero layout */
.hero {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), #ffffff);
    overflow: hidden;
}

.hero-illustration {
    max-width: 320px;
    transition: transform .45s ease;
}

.hero-illustration:hover {
    transform: translateY(-6px);
}

/* Decorative shapes */
.shape {
    position: absolute;
    pointer-events: none;
}

.shape-1 {
    right: -60px;
    top: -40px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at 30% 30%, rgba(91, 140, 255, 0.14), transparent 40%);
    border-radius: 50%;
    filter: blur(12px);
}

.shape-2 {
    left: -40px;
    bottom: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle at 70% 70%, rgba(124, 224, 198, 0.12), transparent 40%);
    border-radius: 50%;
    filter: blur(10px);
}

/* Header fragment tweaks */
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.site-header h1 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.site-header nav a {
    margin-left: 1rem;
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
}

.site-header nav a:hover {
    color: var(--accent);
}

/* Footer fragment tweaks */
.site-footer {
    padding: 1.25rem 0;
    color: var(--muted);
    font-size: 0.95rem;
}

/* Hero card */
.hero {
    border-radius: 14px;
}

/* Product card */
.product-card {
    background: linear-gradient(180deg, #fff, #fbfdff);
}

.product-price {
    color: var(--accent);
    font-weight: 700;
}

/* Product details (right column visual tweaks) */
.product-details .item-number {
    color: var(--accent-2);
    font-weight: 800;
    font-size: 30px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.product-details .product-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: .25rem;
}

.product-divider {
    border: 0;
    border-top: 1px solid #efefef;
    margin: 1.25rem 0;
}

/* Swatches */
.color-swatches .swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.06);
    display: inline-block;
    padding: 0;
    box-sizing: border-box;
    transition: transform .12s ease, box-shadow .12s ease;
    outline: none;
    overflow: hidden;
}

.color-swatches .swatch-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.color-swatches .swatch:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.color-swatches .swatch.active {
    box-shadow: 0 0 0 5px var(--accent-2);
    transform: translateY(-2px);
}

/* Specs and decoration columns */
.product-specs h6 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: .5rem;
}

.product-specs .small.text-muted,
.product-specs ul {
    font-size: 0.95rem;
}

/* Quantity / Price table */
.price-table {
    border-top: 6px solid var(--accent-2);
    background: linear-gradient(180deg, #fff, #fbfdff);
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    padding: 14px 12px;
    text-align: center;
    border-left: 1px solid #efefef;
}

.price-table th:first-child,
.price-table td:first-child {
    text-align: left;
    font-weight: 700;
    border-left: none;
    width: 160px;
}

.price-table thead th {
    text-align: center;
    font-weight: 700;
}

.rating {
    letter-spacing: 0.5px;
}

.text-success {
    color: var(--accent-2) !important;
}

.modal {
    backdrop-filter: blur(10px);
}

/* Header small tweaks */
.site-header .input-group .form-control {
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
}

.site-header .input-group .btn {
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
}

@media screen and (max-width: 991px) {
    .hero-illustration {
        max-width: 100% !important;
    }

    .product-card {
        background: linear-gradient(180deg, #fff, #fbfdff);
        flex-direction: column;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }

    .product-card img {
        width: 100% !important;
    }
}

@media (max-width:767px) {
    .site-header .logo .h5 {
        font-size: 1rem;
    }

    .hero {
        padding: 1.25rem;
    }
}

@media (min-width:768px) {
    .hero {
        padding: 2.5rem;
    }

    .hero-illustration {
        max-width: 380px;
    }
}

/* --- Product slider styles --- */
.product-gallery {
    padding: 0;
}

.gallery-main {
    padding: 0;
    position: relative;
}

.main-slider {
    width: 100%;
    overflow: hidden;
}

.swiper.thumb-slider {
    max-width: 450px;
    width: 100%;
}

.main-slider .swiper-wrapper {
    display: flex;
}

.thumb-slider .swiper-wrapper {
    padding: 0 !important;
}

.swiper.thumb-slider .swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-slider .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 560px;
    box-sizing: border-box;
}

.price-table {
    background: #f6f6f6;
}

.main-slider .img-wrap {
    width: 100%;
    max-width: 600px;
    height: 600px;
    /* target big image size */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 6px;
    padding: 28px;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0 auto;
    /* center the square */
}

.main-slider .slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* enforce zoom cursor on the big image so it's clearly clickable */
.main-slider .img-wrap .slide-img {
    cursor: zoom-in !important;
}

.slider-nav-row {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-nav-row .flex-fill {
    position: relative;
}

.thumb-nav-left,
.thumb-nav-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    z-index: 5;
}

.thumb-nav-left {
    left: 6px;
}

.custom-close.bg-transparent {
    width: 50px !important;
    height: 50px !important;
    top: 5px !important;
    right: 5px !important;
    font-size: 24px !important;
}

.custom-close.bg-transparent::after {
    font-size: 28px !important;
}

.thumb-nav-right {
    right: 6px;
}

.modal-artwork .file-upload-label {
    /* height: 38px !important; */
    border-radius: 8px;
}

/* keep nav row inline with layout so it doesn't cover the gallery */
.slider-nav-row {
    position: relative;
}

.slider-nav-left,
.slider-nav-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
    z-index: 9999;
    /* keep arrows above thumbnails */
}

.slider-nav-left {
    left: 8px;
}

.slider-nav-right {
    right: 8px;
}

.slider-nav-right {
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.slider-nav-left,
.slider-nav-right {
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--accent-2);
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bdd63d !important;
    position: absolute;
    z-index: 99999;
    /* ensure arrows always sit above thumbnails */
}

.slider-nav-left:hover,
.slider-nav-right:hover {
    background: rgba(0, 0, 0, 0.03);
}

.thumb-slider {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    position: relative;
    z-index: 2300;
    pointer-events: auto;
}

.thumb-slider::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.slider-nav-row {
    overflow: hidden;
    position: relative;
}

.thumb-slider .swiper-wrapper {
    pointer-events: auto;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 6px 50%;
    /* Add padding on both sides equal to half container width */
    white-space: nowrap;
}

.thumb-slider .swiper-slide {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    background: #fff;
    box-sizing: border-box;
    padding: 6px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.2s ease;
}

.modal-slide.active {
    height: 100%;
    width: 100%;
}

.swiper-slide.thumb.active {
    border: 2px solid #bdd63d;
}

.thumb-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

div.modal {
    z-index: 99999999;
}

/* Modal gallery styles */
.modal-gallery .modal-dialog {
    max-width: 1240px;
}

.modal-gallery .modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-gallery .modal-content {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-gallery .modal-inner-wrap {
    width: 1200px;
    height: 1200px;
    max-width: 100%;
    max-height: 100vh;
}

.modal-gallery .modal-inner-wrap .img-wrap {
    width: 100%;
    height: 100%;
    max-width: 1200px;
    max-height: 1200px;
    padding: 0;
    border-radius: 6px;
}

.modal-gallery .modal-inner-wrap .slide-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* make modal slider show one large image at a time */
.modal-swiper-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.modal-swiper-wrapper .modal-slide {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.modal-swiper-wrapper .modal-slide.active {
    display: flex;
    position: relative;
}

.modal-gallery .modal-body {
    background: rgba(0, 0, 0, 0.85);
}

/* style the modal gallery close button so it's visible on dark backdrop */
.modal-gallery .btn-close {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
}

.modal-gallery .btn-close::before {
    display: none !important;
}

.modal-gallery .btn-close::after {
    content: '\00d7';
    font-size: 20px;
    line-height: 1;
    color: #222;
}



@media (max-width: 767px) {
    .main-slider .img-wrap {
        height: 360px;
        max-width: 100%;
        padding: 16px;
    }

    .modal-gallery .modal-inner-wrap {
        width: 100%;
        height: auto;
    }
}

.thumb-slider .swiper-slide-thumb-active,
.thumb-slider .swiper-slide.active {
    outline: 2px solid var(--accent-2);
    outline-offset: -6px;
}

.img-tint {
    position: absolute;
    inset: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0;
    transition: background-color .2s ease, opacity .2s ease;
    border-radius: 6px;
}

/* Full-width icon band under product row */
.product-icons-band {
    background: #f6f6f6;
    border-top: 1px solid #e9e9e9;
}

.product-icons-band .container {
    max-width: 1100px;
}

.product-icons-band .icon-btn {
    background: transparent;
    border: none;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 8px;
    color: #222;
}

.product-icons-band .icon-btn+.icon-btn {
    border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.product-icons-band .icon-btn img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.product-icons-band .icon-btn .small {
    margin-top: 6px;
    color: var(--muted);
}

@media (max-width: 768px) {
    main.container-fluid.p-5 {
        padding: 20px !important;
    }

    .row.g-4 {
        width: 100%;
        margin: auto;
    }

    .main-slider .img-wrap,
    .main-slider .swiper-slide {
        height: auto !important;
    }

    .main-slider .swiper-slide {
        flex: 0 0 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: auto;
        box-sizing: border-box;
    }

    .price-table.mb-3 {
        overflow-x: auto !important;
        width: 100% !important;
    }

    .product-icons-band .d-flex {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    .product-icons-band .icon-btn+.icon-btn {
        border-left: unset;
    }
}

@media (max-width: 576px) {
    .product-icons-band .icon-btn img {
        width: 46px;
        height: 46px;
    }

    .product-icons-band .icon-btn {
        padding: 12px 6px;
    }
}

/* Breadcrumb link hover: make links green on hover/focus */
nav[aria-label="breadcrumb"] a {
    color: #6c757d;
    text-decoration: none;
    transition: color .15s ease;
}

nav[aria-label="breadcrumb"] a:hover,
nav[aria-label="breadcrumb"] a:focus {
    color: var(--accent-2) !important;
    text-decoration: underline;
    outline: none;
}

/* Support contact page */
.support-contact-page {
    min-height: calc(100vh - 220px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 24px;
    background: #ececec;
}

.support-contact-page .contact-section {
    width: 100%;
}

.support-contact-page .contact-wrap {
    max-width: 560px;
    margin: 0 auto;
}

.support-contact-page .contact-heading {
    margin-bottom: 28px;
}

.support-contact-page .contact-heading h2 {
    margin: 0;
    font-size: 34px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #111;
}

.support-contact-page .contact-heading p {
    margin: 8px 0 0;
    color: #8f8f8f;
    font-size: 15px;
    font-weight: 300;
}

.support-contact-page .contact-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.support-contact-page .contact-card {
    position: relative;
    background: #f6f6f6;
    padding: 44px 30px 30px;
    min-height: 194px;
    text-align: left;
}

.support-contact-page .contact-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #bdd63d;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    position: absolute;
    top: -37px;
    left: 50%;
    transform: translateX(-50%);
}

.support-contact-page .contact-card h3 {
    margin: 4px 0 8px;
    font-size: 41px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #111;
}

.support-contact-page .contact-card a {
    color: #999;
    font-size: 15px;
    text-decoration: none;
    letter-spacing: 0.2px;
}

.support-contact-page .contact-card a:hover,
.support-contact-page .contact-card a:focus {
    color: #6a6a6a;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .support-contact-page {
        min-height: auto;
        padding: 70px 18px;
    }

    .support-contact-page .contact-wrap {
        max-width: 360px;
    }

    .support-contact-page .contact-heading h2 {
        font-size: 30px;
    }

    .support-contact-page .contact-cards {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .support-contact-page .contact-card {
        min-height: 190px;
        padding: 40px 24px 30px;
    }

    .support-contact-page .contact-card h3 {
        font-size: 36px;
    }
}

/* Swiper.js overrides for proper display */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

/* Thumbnail slider specific styles */
.thumb-slider.swiper {
    height: auto;
}

.thumb-slider .swiper-slide {
    opacity: 0.6;
    transition: opacity 0.3s;
}

.thumb-slider .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--accent-2) !important;
}

/* ========== Category Page Product Grid ========== */
.category-header {
    background: #fff;
}

.category-title {
    font-size: 28px;
    margin: 0;
}

.product-grid {
    margin-bottom: 3rem;
}

.product-card-link {
    display: block;
    color: inherit;
}

.product-card-link:hover .product-name {
    color: var(--accent-2);
}

.product-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-image {
    position: relative;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 1px solid #e9ecef;
}

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

.badge-new {
    background: rgba(0, 0, 0, 0.05);
    color: #6c757d;
    font-size: 11px;
    font-weight: 400;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: capitalize;
    letter-spacing: 0;
    white-space: nowrap;
}

.product-info {
    padding: 1rem 0 0.5rem;
    text-align: left;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    color: #212529;
    line-height: 1.4;
}

.product-code {
    font-size: 13px;
    color: #adb5bd;
    font-weight: 400;
}

.product-actions {
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: flex-start;
}

.btn-action {
    font-size: 12px;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    padding: 0;
}

.btn-action:hover {
    color: var(--accent-2);
}

/* ========== Distributor Tools Page ========== */
.tools-nav-wrapper {
    background: #fff;
    border-radius: 0;
    padding: 2.5rem 1rem 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.tools-nav {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex: 0 0 auto;
    background: none;
    border: none;
    padding: 0;
    cursor: default;
    position: relative;
}

.tool-item.tool-tab {
    cursor: pointer;
    transition: all 0.2s ease;
}

.tool-item.tool-tab.active .tool-label {
    color: #000;
    font-weight: 700;
    border-bottom: 3px solid var(--accent-2);
    padding-bottom: 0.5rem;
}

.tool-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tool-label {
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    transition: all 0.2s ease;
}

.tab-content-wrapper {
    background: transparent;
    padding: 0;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.form-container {
    background: #fff;
    padding: 3rem 3rem;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #000;
    letter-spacing: 0.5px;
}

.form-description {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    text-align: left;
}

.btn-submit {
    background: #c7e22b;
    border: none;
    color: #000;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #b5d327;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(199, 226, 43, 0.3);
}

/* Merch Savvy specific styles */
.merch-savvy-container {
    background: #fff;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.merch-savvy-content {
    padding-right: 2rem;
}

.merch-savvy-content p {
    font-size: 12px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1rem;
}

.merch-savvy-content .merch-intro {
    margin-bottom: 0.5rem;
}

.merch-savvy-form {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 4px;
}

/* Sample Request specific styles */
.sample-request-container {
    background: #fff;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
    letter-spacing: 0.5px;
}

.sample-section,
.shipping-section {
    padding: 1rem;
}

/* Support tab styles */
.support-container {
    background: #fff;
    padding: 4rem 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.support-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.support-subtitle {
    font-size: 16px;
    color: #999;
    margin-bottom: 3rem;
}

.support-container .contact-card {
    text-align: center;
    padding: 2rem 1rem;
}

.support-container .contact-icon {
    width: 100px;
    height: 100px;
    background: #c7e22b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.support-container .contact-icon i {
    font-size: 40px;
    color: #fff;
}

.support-container .contact-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.support-container .contact-info {
    font-size: 16px;
    color: #999;
    margin: 0;
}

.form-label-small {
    font-size: 11px;
    font-weight: 500;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control,
.form-select {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 0.6rem 0.75rem;
    font-size: 14px;
    color: #495057;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-2);
    box-shadow: 0 0 0 0.2rem rgba(199, 226, 43, 0.15);
}

.upload-wrapper {
    position: relative;
    height: 45px;
}

.upload-wrapper input[type="file"] {
    /* position: absolute; */
    /* opacity: 0; */
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.upload-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    color: var(--accent-2);
    cursor: pointer;
    z-index: 1;
    pointer-events: none;
}

.upload-btn i {
    font-size: 28px;
}

.color-swatches {
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .tools-nav-wrapper {
        padding: 1.5rem 0.5rem 1rem;
    }

    .tools-navs {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }

    .tool-item {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }

    .tool-icon {
        width: 60px;
        height: 60px;
    }

    .tool-label {
        font-size: 9px;
    }

    .tab-content-wrapper {
        padding: 0;
    }

    .form-container,
    .merch-savvy-container,
    .sample-request-container,
    .support-container {
        padding: 2rem 1.5rem;
    }

    .merch-savvy-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .merch-savvy-form {
        padding: 1.5rem;
    }

    .sample-section,
    .shipping-section {
        padding: 0.5rem;
    }

    .section-title {
        font-size: 16px;
    }
}

#artwork-upload {
    border: 1px solid #dee2e6 !important;
    border-radius: 4px;
    padding: 0.6rem 0.75rem;
    font-size: 14px;
    color: #495057;
}

/* ============================================
   Trending Products Section
   ============================================ */

.trending-products-section {
    padding: 60px 0;
    background: #ffffff;
}

.trending-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #212529;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.trending-product-card {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trending-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.trending-product-image {
    flex: 0 0 240px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
}

.trending-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.trending-product-info {
    flex: 1;
    padding: 30px 25px;
    background: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trending-product-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #212529;
}

.trending-product-info p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0 0 15px 0;
}

.see-more-link {
    font-size: 0.95rem;
    color: var(--accent-2);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.see-more-link:hover {
    color: #b5ce26;
    text-decoration: underline;
}

/* Responsive Design for Trending Products */
@media (max-width: 992px) {
    .trending-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .trending-products-section {
        padding: 40px 0;
    }
    
    .trending-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .trending-product-image {
        flex: 0 0 180px;
    }
    
    .trending-product-info {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .trending-product-card {
        flex-direction: column;
    }
    
    .trending-product-image {
        flex: 0 0 auto;
        min-height: 200px;
    }
    
    .trending-title {
        font-size: 1.25rem;
    }
}

/* ============================================
   Hero Slider Styles
   ============================================ */

.hero-slider-container {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: auto;
}

.heroSwiper .swiper-slide {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.hero-slide-content {
    width: 100%;
    height: auto;
    position: relative;
    aspect-ratio: 2540 / 960;
}

.hero-slide-content img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Swiper Navigation Buttons */
.heroSwiper .swiper-button-prev,
.heroSwiper .swiper-button-next {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    color: #bdd63d;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.heroSwiper .swiper-button-prev:after,
.heroSwiper .swiper-button-next:after {
    font-size: 24px;
    font-weight: 900;
}

.heroSwiper .swiper-button-prev:hover,
.heroSwiper .swiper-button-next:hover {
    background: #fff;
    color: #a7c22f;
    transform: scale(1.1);
}

.heroSwiper .swiper-button-prev {
    left: 30px;
}

.heroSwiper .swiper-button-next {
    right: 30px;
}

/* Swiper Pagination Dots */
.heroSwiper .swiper-pagination {
    bottom: 30px;
}

.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: #bdd63d;
    width: 35px;
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .heroSwiper .swiper-button-prev,
    .heroSwiper .swiper-button-next {
        width: 45px;
        height: 45px;
    }
    
    .heroSwiper .swiper-button-prev:after,
    .heroSwiper .swiper-button-next:after {
        font-size: 18px;
    }
    
    .heroSwiper .swiper-button-prev {
        left: 15px;
    }
    
    .heroSwiper .swiper-button-next {
        right: 15px;
    }
    
    .heroSwiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
    
    .heroSwiper .swiper-pagination-bullet-active {
        width: 28px;
    }
}

@media (max-width: 480px) {
    .heroSwiper .swiper-button-prev,
    .heroSwiper .swiper-button-next {
        width: 35px;
        height: 35px;
    }
    
    .heroSwiper .swiper-button-prev:after,
    .heroSwiper .swiper-button-next:after {
        font-size: 14px;
    }
    
    .heroSwiper .swiper-button-prev {
        left: 10px;
    }
    
    .heroSwiper .swiper-button-next {
        right: 10px;
    }
    
    .heroSwiper .swiper-pagination {
        bottom: 15px;
    }
    
    .heroSwiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
    
    .heroSwiper .swiper-pagination-bullet-active {
        width: 24px;
    }
}
