/* =========================================================
   GTCLED MODERN - PRODUCT MAIN IMAGE
   ========================================================= */

.gtc-product-main-image {
    width: 100%;
    text-align: center;
    margin: 0 0 20px;
}

.gtc-product-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 360px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    box-sizing: border-box;
}

.gtc-main-product-image {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 420px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.gtc-no-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: #f7f7f7;
    border-radius: 12px;
    color: #777;
    font-size: 15px;
}

/* Mobile */
@media (max-width: 600px) {

    .gtc-product-image-link {
        min-height: 260px;
        padding: 12px;
    }

    .gtc-main-product-image {
        max-height: 300px;
    }

}

/* =========================================================
   GTCLED MODERN - PRODUCT GRID
   ========================================================= */

.gtc-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.gtc-product-grid-item {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

/* Remove old Zen Cart positioning */
.gtc-product-grid-item,
.gtc-product-grid-item * {
    box-sizing: border-box;
}

.gtc-product-grid-item .centerBoxContentsProducts,
.gtc-product-grid-item .centeredContent,
.gtc-product-grid-item .gridlayout {
    float: none;
    width: 100% !important;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* Tablet */
@media (max-width: 1024px) {
    .gtc-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .gtc-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .gtc-product-grid-item {
        min-width: 0;
    }
}

/* Small phones */
@media (max-width: 380px) {
    .gtc-product-grid {
        gap: 6px;
    }
}
/* =========================================================
   GTCLED MODERN
   COMPLETE CLEAN STYLESHEET
   ========================================================= */


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

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: #f7f8fa;
    color: #1f2937;
    font-family: Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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


/* =========================================================
   PAGE
   ========================================================= */

#page.gtc-modern-page {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

#mainWrapper.gtc-modern-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
}


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

#gtc-modern-header {
    width: 100%;
    background: #ffffff;
    position: relative;
    z-index: 1000;
    font-family: Arial, Helvetica, sans-serif;
}


/* ---------------------------------------------------------
   HEADER MAIN
   --------------------------------------------------------- */

.gtc-header-main {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.gtc-header-container {
    width: 100%;
    max-width: 1280px;
    min-height: 76px;
    margin: 0 auto;
    padding: 10px 22px;

    display: flex;
    align-items: center;
    gap: 25px;
}


/* ---------------------------------------------------------
   LOGO
   --------------------------------------------------------- */

.gtc-header-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.gtc-header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.gtc-header-logo img {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 58px;
}


/* ---------------------------------------------------------
   SEARCH
   --------------------------------------------------------- */

.gtc-header-search {
    flex: 1 1 auto;
    min-width: 180px;
}

.gtc-header-search form {
    margin: 0;
}

.gtc-header-search input[type="text"],
.gtc-header-search input[type="search"] {
    width: 100%;
    height: 44px;

    padding: 0 18px;

    border: 1px solid #d1d5db;
    border-radius: 8px;

    background: #f9fafb;

    font-size: 15px;

    outline: none;
}

.gtc-header-search input[type="text"]:focus,
.gtc-header-search input[type="search"]:focus {
    border-color: #9ca3af;
    background: #ffffff;
}


/* ---------------------------------------------------------
   HEADER ACTIONS
   --------------------------------------------------------- */

.gtc-header-actions {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    gap: 10px;
}

.gtc-header-action {
    position: relative;

    min-width: 62px;
    height: 48px;

    padding: 5px 8px;

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

    gap: 3px;

    color: #1f2937;
    text-decoration: none;

    border-radius: 8px;

    font-size: 12px;

    transition: background .2s ease;
}

.gtc-header-action i {
    font-size: 19px;
}

.gtc-header-action:hover {
    background: #f3f4f6;
    color: #111827;
}


/* ---------------------------------------------------------
   CART
   --------------------------------------------------------- */

.gtc-cart-action {
    position: relative;
}

.gtc-cart-count {
    position: absolute;

    top: 2px;
    right: 7px;

    min-width: 17px;
    height: 17px;

    padding: 0 4px;

    border-radius: 20px;

    background: #dc2626;
    color: #ffffff;

    font-size: 10px;
    font-weight: bold;

    line-height: 17px;
    text-align: center;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.gtc-main-nav {
    width: 100%;
    background: #111827;
}

.gtc-nav-container {
    width: 100%;
    max-width: 1280px;

    min-height: 46px;

    margin: 0 auto;
    padding: 0 22px;

    display: flex;
    align-items: center;

    overflow-x: auto;
}

.gtc-nav-container a {
    min-height: 46px;

    padding: 0 18px;

    display: flex;
    align-items: center;

    color: #ffffff;
    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    transition: background .2s ease;
}

.gtc-nav-container a:hover {
    background: #374151;
}

.gtc-nav-home {
    padding-left: 12px !important;
}

.gtc-nav-home i {
    margin-right: 7px;
}

.gtc-nav-b2b {
    margin-left: auto;
    background: #374151;
}

.gtc-nav-b2b:hover {
    background: #4b5563 !important;
}

.gtc-nav-b2b i {
    margin-right: 7px;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.gtc-mobile-menu {
    display: none;

    border: 0;
    background: transparent;

    color: #111827;

    font-size: 22px;

    padding: 8px;

    cursor: pointer;
}


/* =========================================================
   MOBILE SEARCH
   ========================================================= */

.gtc-mobile-search {
    display: none;
}

.gtc-mobile-search form {
    margin: 0;
}

.gtc-mobile-search input[type="text"],
.gtc-mobile-search input[type="search"] {
    width: 100%;
    height: 42px;

    padding: 0 15px;

    border: 1px solid #d1d5db;
    border-radius: 8px;

    background: #f9fafb;

    font-size: 14px;
}


/* =========================================================
   OLD ZEN CART HEADER
   ========================================================= */

#navMainWrapper,
#logoWrapper {
    display: none !important;
}


/* =========================================================
   MAIN CONTENT
   ========================================================= */

#contentMainWrapper.gtc-modern-content {
    width: 100%;
    margin: 0;
    padding: 0 0 40px;

    background: #f7f8fa;
}

.gtc-content-container {
    width: 100%;
    max-width: 1280px;

    margin: 0 auto;

    padding: 24px 22px;
}

.gtc-main-content {
    width: 100%;
    min-width: 0;

    margin: 0;
    padding: 0;
}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.gtc-breadcrumb {
    width: 100%;

    margin: 0 0 18px;
    padding: 0;

    font-size: 13px;
}


/* =========================================================
   BANNERS
   ========================================================= */

.gtc-banner {
    width: 100%;
    margin: 0 0 24px;

    text-align: center;
}

.gtc-banner img {
    max-width: 100%;
    height: auto;
}

#bannerOne.gtc-banner-top {
    width: 100%;
    margin: 0;

    text-align: center;
}

#bannerOne.gtc-banner-top img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   MAIN CONTENT ELEMENTS
   ========================================================= */

.gtc-main-content > img {
    max-width: 100%;
}

.gtc-main-content table {
    max-width: 100%;
}

.gtc-main-content h1,
.gtc-main-content h2,
.gtc-main-content h3 {
    color: #111827;
}


/* =========================================================
   OLD SIDE COLUMNS
   ========================================================= */

#navColumnOne,
#navColumnTwo {
    display: none !important;
}


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

#gtc-modern-footer {
    width: 100%;

    margin-top: 40px;

    background: #111827;
    color: #d1d5db;

    font-family: Arial, Helvetica, sans-serif;
}

#gtc-modern-footer * {
    box-sizing: border-box;
}

.gtc-footer-container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}


/* ---------------------------------------------------------
   FOOTER MAIN
   --------------------------------------------------------- */

.gtc-footer-main {
    padding: 42px 0 34px;
}

.gtc-footer-main .gtc-footer-container {
    display: grid;

    grid-template-columns:
        1.7fr
        1fr
        1fr
        1.25fr;

    gap: 38px;
}

.gtc-footer-column {
    min-width: 0;
}

.gtc-footer-column h3 {
    margin: 3px 0 18px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;
}


/* ---------------------------------------------------------
   FOOTER BRAND
   --------------------------------------------------------- */

.gtc-footer-logo {
    display: inline-block;

    color: #ffffff !important;
    text-decoration: none !important;

    font-size: 30px;
    line-height: 1;

    font-weight: 800;
    letter-spacing: -1px;
}

.gtc-footer-logo span {
    color: #f59e0b;
}

.gtc-footer-tagline {
    margin: 10px 0 8px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;
}

.gtc-footer-description {
    max-width: 330px;

    margin: 0;

    color: #9ca3af;

    font-size: 13px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   FOOTER BUTTONS
   --------------------------------------------------------- */

.gtc-footer-buttons {
    display: flex;
    gap: 9px;

    margin-top: 20px;

    flex-wrap: wrap;
}

.gtc-footer-btn {
    display: inline-block;

    padding: 9px 14px;

    border-radius: 5px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none !important;
}

.gtc-btn-primary {
    background: #f59e0b;
    color: #111827 !important;
}

.gtc-btn-outline {
    border: 1px solid #4b5563;
    color: #ffffff !important;
}


/* ---------------------------------------------------------
   FOOTER LINKS
   --------------------------------------------------------- */

.gtc-footer-links {
    margin: 0;
    padding: 0;

    list-style: none;
}

.gtc-footer-links li {
    margin: 0 0 10px;
    padding: 0;
}

.gtc-footer-links a {
    color: #9ca3af !important;

    font-size: 13px;

    text-decoration: none !important;
}

.gtc-footer-links a:hover {
    color: #f59e0b !important;
}


/* ---------------------------------------------------------
   CONTACT
   --------------------------------------------------------- */

.gtc-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 14px;
}

.gtc-contact-icon {
    width: 24px;
    min-width: 24px;

    color: #f59e0b;

    font-size: 16px;
}

.gtc-contact-item strong {
    display: block;

    margin-bottom: 2px;

    color: #ffffff;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
}

.gtc-contact-item a {
    color: #d1d5db !important;

    font-size: 13px;

    text-decoration: none !important;
}


/* ---------------------------------------------------------
   FACEBOOK
   --------------------------------------------------------- */

.gtc-footer-social {
    margin-top: 17px;
}

.gtc-footer-social a {
    display: inline-block;

    padding: 7px 12px;

    border: 1px solid #374151;
    border-radius: 5px;

    color: #d1d5db !important;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none !important;
}

.gtc-footer-social a:hover {
    border-color: #f59e0b;
    color: #f59e0b !important;
}


/* =========================================================
   TRUST STRIP
   ========================================================= */

.gtc-footer-trust {
    border-top: 1px solid #273244;
    border-bottom: 1px solid #273244;

    background: #151e2d;
}

.gtc-trust-container {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    padding-top: 17px;
    padding-bottom: 17px;
}

.gtc-trust-item {
    display: flex;

    align-items: center;

    gap: 10px;
}

.gtc-trust-item > span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 27px;
    height: 27px;
    min-width: 27px;

    border: 1px solid #f59e0b;
    border-radius: 50%;

    color: #f59e0b;

    font-size: 13px;
    font-weight: 700;
}

.gtc-trust-item strong {
    display: block;

    color: #ffffff;

    font-size: 12px;
}

.gtc-trust-item small {
    display: block;

    margin-top: 2px;

    color: #8993a3;

    font-size: 10px;
}


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

.gtc-footer-bottom {
    background: #0b1220;
}

.gtc-bottom-container {
    display: flex;

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

    gap: 15px;

    padding-top: 15px;
    padding-bottom: 15px;
}

.gtc-copyright {
    color: #7f8999;
    font-size: 11px;
}

.gtc-bottom-links {
    display: flex;
    gap: 16px;
}

.gtc-bottom-links a {
    color: #8f99a8 !important;

    font-size: 11px;

    text-decoration: none !important;
}

.gtc-footer-motto {
    color: #f59e0b;

    font-size: 10px;
    font-weight: 600;

    text-align: right;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .gtc-header-container {
        min-height: 70px;

        padding: 9px 16px;

        gap: 15px;
    }

    .gtc-header-logo img {
        max-width: 155px;
        max-height: 52px;
    }

    .gtc-header-search {
        min-width: 140px;
    }

    .gtc-nav-container {
        padding: 0 10px;
    }

    .gtc-nav-container a {
        padding: 0 13px;

        font-size: 13px;
    }


    /* Footer */

    .gtc-footer-main .gtc-footer-container {
        grid-template-columns:
            1.5fr
            1fr
            1fr;

        gap: 28px;
    }

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

    .gtc-footer-description {
        max-width: 600px;
    }

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


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    /* Header */

    .gtc-header-container {
        min-height: 62px;

        padding: 7px 12px;

        gap: 8px;
    }

    .gtc-mobile-menu {
        display: block;
    }

    .gtc-header-logo {
        flex: 1 1 auto;
    }

    .gtc-header-logo img {
        max-width: 125px;
        max-height: 44px;
    }

    .gtc-header-search {
        display: none;
    }

    .gtc-header-actions {
        gap: 0;
    }

    .gtc-header-action {
        min-width: 42px;
        width: 42px;
        height: 46px;

        padding: 3px;

        font-size: 0;
    }

    .gtc-header-action i {
        font-size: 20px;
    }

    .gtc-cart-count {
        top: 0;
        right: 1px;
    }

    .gtc-main-nav {
        display: none;
    }

    .gtc-mobile-search {
        display: block;

        padding: 9px 12px 11px;

        background: #ffffff;

        border-bottom: 1px solid #e5e7eb;
    }


    /* Main content */

    .gtc-content-container {
        padding: 16px 12px 30px;
    }

    #contentMainWrapper.gtc-modern-content {
        padding-bottom: 25px;
    }


    /* Footer */

    #gtc-modern-footer {
        margin-top: 25px;
    }

    .gtc-footer-main {
        padding: 30px 0 22px;
    }

    .gtc-footer-main .gtc-footer-container {
        width: 90%;

        grid-template-columns: 1fr 1fr;

        gap: 25px 20px;
    }

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

    .gtc-footer-logo {
        font-size: 27px;
    }

    .gtc-footer-tagline {
        font-size: 13px;
    }

    .gtc-footer-description {
        font-size: 12px;
        line-height: 1.55;
    }

    .gtc-footer-column h3 {
        margin-bottom: 13px;
        font-size: 13px;
    }

    .gtc-footer-links li {
        margin-bottom: 8px;
    }

    .gtc-footer-links a {
        font-size: 12px;
    }

    .gtc-contact-item {
        margin-bottom: 11px;
    }

    .gtc-contact-item a {
        font-size: 12px;
    }

    .gtc-footer-buttons {
        margin-top: 16px;
    }

    .gtc-footer-btn {
        padding: 8px 11px;
        font-size: 11px;
    }

    .gtc-trust-container {
        width: 90%;

        grid-template-columns: 1fr 1fr;

        gap: 15px 10px;

        padding-top: 15px;
        padding-bottom: 15px;
    }

    .gtc-trust-item {
        gap: 7px;
    }

    .gtc-trust-item > span {
        width: 23px;
        height: 23px;
        min-width: 23px;

        font-size: 11px;
    }

    .gtc-trust-item strong {
        font-size: 10px;
    }

    .gtc-trust-item small {
        font-size: 9px;
    }

    .gtc-bottom-container {
        width: 90%;

        display: flex;

        flex-direction: column;

        align-items: center;

        text-align: center;

        gap: 8px;

        padding-top: 13px;
        padding-bottom: 13px;
    }

    .gtc-footer-motto {
        text-align: center;
        font-size: 9px;
    }

    .gtc-bottom-links {
        gap: 12px;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .gtc-header-container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .gtc-header-logo img {
        max-width: 110px;
    }

    .gtc-mobile-menu {
        padding: 6px;
    }

    .gtc-header-action {
        min-width: 38px;
        width: 38px;
    }


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

    .gtc-footer-brand {
        grid-column: auto;
    }

    .gtc-trust-container {
        grid-template-columns : 1fr;
    }
}
/* =========================================================
   GTCLED MODERN - PRODUCT GRID
   ========================================================= */

.gtc-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.gtc-product-grid-item {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

/* Make the existing Zen Cart product content fit the card */
.gtc-product-grid-item > * {
    max-width: 100%;
    box-sizing: border-box;
}

/* Tablet */
@media (max-width: 1024px) {
    .gtc-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
}

/* Mobile - 3 products across */
@media (max-width: 600px) {
    .gtc-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }
}

/* Very small screens */
@media (max-width: 380px) {
    .gtc-product-grid {
        gap: 6px;
    }
}
/* =========================================================
   GTCLED MODERN - PRODUCT CARDS
   ========================================================= */

.gtc-product-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    margin: 20px 0;
    padding: 0;
    box-sizing: border-box;
}

.gtc-product-grid-item {
    display: block !important;
    width: 100% !important;
    min-width: 0;
    margin: 0 !important;
    padding: 16px !important;
    box-sizing: border-box;

    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;

    text-align: center;

    overflow: hidden;
}

/* Remove old Zen Cart floating/grid behaviour */

.gtc-product-grid-item *,
.gtc-product-grid-item img {
    box-sizing: border-box;
}

.gtc-product-grid-item .centerBoxContentsProducts,
.gtc-product-grid-item .centeredContent,
.gtc-product-grid-item .gridlayout {
    float: none !important;
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Product image */

.gtc-product-grid-item img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 220px;
    margin: 0 auto 12px;
}

/* Product name */

.gtc-product-grid-item h3,
.gtc-product-grid-item .itemTitle {
    display: block;
    margin: 8px 0 10px;
    padding: 0;

    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
}

.gtc-product-grid-item h3 a,
.gtc-product-grid-item .itemTitle a {
    text-decoration: none;
}

/* Price */

.gtc-product-grid-item .productPrice,
.gtc-product-grid-item .price {
    display: block;
    margin: 8px 0;

    font-size: 17px;
    font-weight: 700;
}

/* Buttons */

.gtc-product-grid-item input[type="submit"],
.gtc-product-grid-item input[type="button"],
.gtc-product-grid-item button {
    max-width: 100%;
    margin-top: 8px;
}

/* Prevent old Zen Cart column styles from breaking cards */

.gtc-product-grid-item .back,
.gtc-product-grid-item .forward {
    float: none !important;
}

.gtc-product-grid-item br {
    line-height: 1.4;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .gtc-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

}


/* =========================================================
   MOBILE - 3 PRODUCTS PER ROW
   ========================================================= */

@media (max-width: 600px) {

    .gtc-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .gtc-product-grid-item {
        padding: 8px !important;
        border-radius: 8px;
    }

    .gtc-product-grid-item img {
        max-height: 120px;
        margin-bottom: 6px;
    }

    .gtc-product-grid-item h3,
    .gtc-product-grid-item .itemTitle {
        font-size: 12px;
        line-height: 1.3;
        margin: 5px 0;
    }

    .gtc-product-grid-item .productPrice,
    .gtc-product-grid-item .price {
        font-size: 13px;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .gtc-product-grid {
        gap: 6px;
    }

    .gtc-product-grid-item {
        padding: 6px !important;
    }

    .gtc-product-grid-item img {
        max-height: 105px;
    }

    .gtc-product-grid-item h3,
    .gtc-product-grid-item .itemTitle {
        font-size: 11px;
    }

}
/* =========================================================
   GTCLED MODERN - PRODUCT DETAIL PAGE
   ========================================================= */

#productGeneral {
    display: block !important;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

#prod-info-top {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Product title */

#productName {
    display: block !important;
    width: 100%;
    margin: 0 0 25px;
    padding: 0;

    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;
}

/* Image + product information */

#pinfo-left {
    display: block !important;
    float: none !important;
    width: 100% !important;
    min-width: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#pinfo-right {
    display: block !important;
    float: none !important;
    width: 100% !important;
    min-width: 0;
    margin: 25px 0 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main product image */

#productMainImageWrapper {
    display: block !important;
    width: 100%;
    margin: 0 0 20px;
    text-align: center;
}

#productMainImageWrapper img {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto;
}

/* Product price / cart */

#cart-box {
    display: block !important;
    float: none !important;
    width: 100% !important;
    margin: 25px 0 0;
    padding: 20px;
    box-sizing: border-box;

    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

#productPrices {
    display: block !important;
    margin: 0 0 20px;
}

/* Add to cart */

#cartAdd {
    display: block !important;
    margin-top: 15px;
}

#cartAdd input,
#cartAdd button {
    max-width: 100%;
}

/* Description */

#productDescription {
    display: block !important;
    clear: both !important;
    width: 100%;
    margin: 30px 0 0;
    padding: 20px 0;
    box-sizing: border-box;

    line-height: 1.7;
}

/* Category icons */

#productGeneral .categoryIcon,
#productGeneral .categoryIconList {
    display: block !important;
}

/* Clear old Zen Cart floats */

#productGeneral .back,
#productGeneral .forward,
#productGeneral .group {
    box-sizing: border-box;
}

#productGeneral::after,
#prod-info-top::after {
    content: "";
    display: table;
    clear: both;
}


/* =========================================================
   DESKTOP PRODUCT PAGE
   ========================================================= */

@media (min-width: 801px) {

    #prod-info-top {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: 40px;
        align-items: start;
    }

    #productName {
        grid-column: 1 / -1;
    }

    #pinfo-left {
        grid-column: 1;
        grid-row: 2;
    }

    #pinfo-right {
        grid-column: 2;
        grid-row: 2;
        margin-top: 0;
    }

    #cart-box {
        grid-column: 2;
        grid-row: 3;
    }

    #productDescription {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

    #productName {
        font-size: 23px;
        margin-bottom: 18px;
    }

    #pinfo-left,
    #pinfo-right,
    #cart-box,
    #productDescription {
        width: 100% !important;
    }

    #cart-box {
        padding: 15px;
    }

}
/* =========================================================
   GTCLED MODERN
   PRODUCT DETAILS CARD
   ========================================================= */

.gtc-product-details-card {
    width: 100%;
    margin: 20px 0;
    padding: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
}

.gtc-product-details-title {
    padding: 14px 18px;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
}

.gtc-product-details-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.gtc-product-details-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin: 0 !important;
    padding: 11px 18px;
    border-bottom: 1px solid #f0f0f0;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.5;
}

.gtc-product-details-list li:last-child {
    border-bottom: 0;
}

.gtc-detail-label {
    flex: 0 0 42%;
    font-weight: 600;
}

.gtc-detail-value {
    flex: 1 1 auto;
    text-align: right;
    word-break: break-word;
}

/* Mobile */
@media (max-width: 600px) {

    .gtc-product-details-card {
        margin: 16px 0;
        border-radius: 10px;
    }

    .gtc-product-details-title {
        padding: 12px 14px;
        font-size: 15px;
    }

    .gtc-product-details-list li {
        padding: 10px 14px;
        gap: 12px;
        font-size: 13px;
    }

    .gtc-detail-label {
        flex-basis: 40%;
    }
}
/* =========================================================
   GTCLED MODERN
   PRODUCT CATEGORY
   ========================================================= */

.gtc-product-category {
    width: 100%;
    margin: 0 0 15px;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-sizing: border-box;
}

.gtc-product-category-label {
    margin-bottom: 3px;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.gtc-product-category-name {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

@media (max-width: 600px) {

    .gtc-product-category {
        margin-bottom: 12px;
        padding: 9px 12px;
    }

    .gtc-product-category-name {
        font-size: 13px;
    }
}
/* =========================================================
   GTCLED MODERN
   ADDITIONAL PRODUCT IMAGES
   ========================================================= */

#productAdditionalImages.gtc-additional-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin: 15px 0 25px;
    padding: 0;
    box-sizing: border-box;
}

.gtc-additional-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    padding: 6px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-sizing: border-box;
    overflow: hidden;
}

.gtc-additional-image img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 68px;
    object-fit: contain;
}

.gtc-additional-image:hover {
    border-color: #9ca3af;
}

@media (max-width: 600px) {

    #productAdditionalImages.gtc-additional-images {
        gap: 7px;
        margin-bottom: 18px;
    }

    .gtc-additional-image {
        width: 64px;
        height: 64px;
        padding: 5px;
        border-radius: 6px;
    }

    .gtc-additional-image img {
        max-height: 52px;
    }
}
/* =========================================================
   GTCLED MODERN
   MOBILE NAVIGATION
   ========================================================= */

#gtc-mobile-menu {
    display: none;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    box-sizing: border-box;
}

.gtc-mobile-menu-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.gtc-mobile-menu-link {
    display: block;
    width: 100%;
    padding: 14px 18px;
    box-sizing: border-box;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.gtc-mobile-menu-link:last-child {
    border-bottom: 0;
}

@media (max-width: 800px) {

    #gtc-mobile-menu {
        display: none;
    }

    body.gtc-menu-open #gtc-mobile-menu {
        display: block;
    }
}