/* HERO */

.tkm-hero-section {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.tkm-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tkm-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1;
}

.tkm-hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tkm-hero-content h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 700;
}

/* SHOP PAGE */

.custom-shop-page {
    background: #f5f5f5;
    padding-bottom:10px;
}

/* CONTAINER */

.tkm-shop-container {
    margin: auto;
}

/* PAGE TITLE */

.shop-header {
    text-align: center;
    margin-bottom: 80px;
}

.shop-header h1 {
    font-size: 58px;
    font-weight: 700;
}

/* PARENT SECTION */

.parent-category-section {
    margin: 50px auto;
    max-width: 1140px;
}

/* PARENT TITLE */

.parent-category-title {
    margin-bottom: 35px;
}

.parent-category-title h2 {
    font-size: 42px;
    font-weight: 700;
}

/* CHILD GRID */

.child-category-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
}

/* CARD */

.child-category-card {
    display: block;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: #111;
    transition: .3s;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

.child-category-card:hover {
    transform: translateY(-5px);
}

.child-category-card img {
    width: 90%;
    height: 180px;
    object-fit: contain;
    background: #fff;
    padding: 10px;
}

.child-category-card h3 {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-bottom:20px;
}

/* MOBILE */

@media(max-width:991px){

.child-category-grid {
    grid-template-columns: repeat(2,1fr);
}

}

@media(max-width:600px){

.child-category-grid {
    grid-template-columns: 1fr;
}

.shop-header h1 {
    font-size: 42px;
}

.parent-category-title h2 {
    font-size: 30px;
}

}

/* CATEGORY PAGE */

.custom-category-page {
    background: #f5f5f5;
    padding-bottom:10px;
}

/* HEADER */

.category-page-header {
    margin-bottom: 60px;
}

.category-page-header h1 {
    font-size: 58px;
    font-weight: 700;
}

/* GRID */

.custom-products-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin: 50px auto;
    max-width: 1180px;
}

/* CARD */

.custom-product-card {
    background: #fff;
    border-radius: 18px;
    padding: 10px;
}

.custom-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.custom-product-card h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #111;
    text-align: center;
}

.custom-product-card .price {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

/* BUTTON AREA */

.product-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    flex-direction: column;
    gap: 10px;
}

/* ADD TO CART */

.product-buttons .button {
    background: #111 !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 14px 30px !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
}


/* ========================================
   SINGLE PRODUCT
======================================== */

.custom-single-product{
    background:#f5f5f5;
    padding:80px 0;
}

/* CONTAINER */

.custom-single-product .tkm-shop-container{
    margin:auto;
    width:1140px;
}

/* GRID */

.single-product-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:start;
}

/* ========================================
   IMAGE AREA
======================================== */

.single-product-image-area{
    position:sticky;
    top:100px;
}

/* IMAGE BOX */

.main-product-image{
    background:#fff;
    border-radius:14px;
    padding:20px;
    overflow:hidden;
    position:relative;
}

/* IMAGE */

.main-product-image img{
    width:100%;
    height:auto;
    object-fit:contain;
    transition:.4s;
}

.main-product-image:hover img{
    transform:scale(1.05);
}

/* ZOOM LINK */

.product-image-zoom{
    display:block;
    position:relative;
}

/* ZOOM ICON */

.zoom-icon{
    position:absolute;
    top:18px;
    right:18px;
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(0,0,0,.65);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

/* ========================================
   CONTENT
======================================== */

/* TITLE */

.product-title{
    font-size:44px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:20px;
    color:#111;
}

/* PRICE */

.product-price{
    font-size:28px;
    font-weight:700;
    margin-bottom:35px;
}

/* ========================================
   CART
======================================== */

.single-product-cart form.cart{
    display:flex !important;
    align-items:center !important;
    gap:15px !important;
    flex-wrap:nowrap !important;
}


.single-product-cart{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:40px;
    flex-wrap:wrap;
}

/* QUANTITY */

.single-product-cart .quantity{
    margin:0 !important;
}

.single-product-cart .quantity input{
    width:80px;
    height:50px;
    border:1px solid #ddd;
    padding:0 10px;
    font-size:16px;
    border-radius:0;
}

/* BUTTON */

.single_add_to_cart_button{
    height:50px !important;
    background:black !important;
    color:#fff !important;
    border:none !important;
    padding:0 32px !important;
    font-size:15px !important;
    font-weight:600 !important;
    transition:.3s;
}

.single_add_to_cart_button:hover{
    background:#111 !important;
}

/* HIDE VIEW CART */

.added_to_cart.wc-forward{
    display:none !important;
}

/* ========================================
   ACCORDION
======================================== */

.product-accordion{
    border:1px solid #ddd;
    background:#fff;
    margin-bottom:50px;
}

/* ITEM */

.product-accordion details{
    border-bottom:1px solid #ddd;
}

.product-accordion details:last-child{
    border-bottom:none;
}

/* TITLE */

.product-accordion summary{
    list-style:none;
    cursor:pointer;
    padding:18px 24px;
    font-size:17px;
    font-weight:600;
    position:relative;
}

.product-accordion summary::-webkit-details-marker{
    display:none;
}

/* PLUS ICON */

.product-accordion summary::after{
    content:'+';
    position:absolute;
    right:24px;
    top:50%;
    transform:translateY(-50%);
    font-size:22px;
}

.product-accordion details[open] summary::after{
    content:'-';
}

/* CONTENT */

.accordion-content{
    padding:0 24px 24px;
    font-size:15px;
    line-height:1.8;
}

/* ========================================
   FEATURES
======================================== */

.single-product-features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid #ddd;
    margin-top:40px;
}

/* ITEM */

.feature-item{
    text-align:center;
    padding:30px 15px;
    border-right:1px dashed #d0d0d0;
    font-size:15px;
    font-weight:600;
}

.feature-item:last-child{
    border-right:none;
}

/* ========================================
   RELATED PRODUCTS
======================================== */

.related-products-section{
    margin-top:120px;
}

/* TITLE */

.related-products-section h2{
    font-size:42px;
    margin-bottom:40px;
    text-align:center;
}

/* GRID */

.related-products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* CARD */

.related-product-card{
    background:#fff;
    border-radius:14px;
    padding:25px;
    transition:.3s;
}

.related-product-card:hover{
    transform:translateY(-5px);
}

/* IMAGE */

.related-product-card img{
    width:100%;
    height:240px;
    object-fit:contain;
}

/* TITLE */

.related-product-card h3{
    font-size:18px;
    line-height:1.5;
    margin:20px 0;
    color:#111;
}

/* PRICE */

.related-product-card .price{
    font-size:18px;
    font-weight:700;
    margin-bottom:20px;
}

/* BUTTON AREA */

.product-buttons{
    display:flex;
    justify-content:center;
}

/* BUTTON */

.related-product-card .button{
    background:#a40000 !important;
    color:#fff !important;
    border:none !important;
    padding:12px 22px !important;
    font-size:14px !important;
    border-radius:0 !important;
    transition:.3s;
}

.related-product-card .button:hover{
    background:#111 !important;
}

/* ========================================
   TABLET
======================================== */

@media(max-width:991px){

.single-product-grid{
    grid-template-columns:1fr;
    gap:50px;
}

.single-product-image-area{
    position:relative;
    top:0;
}

.product-title{
    font-size:40px;
}

.single-product-features{
    grid-template-columns:repeat(2,1fr);
}

.related-products-grid{
    grid-template-columns:repeat(2,1fr);
}

.main-product-image{
    padding:40px;
}

}

/* ========================================
   MOBILE
======================================== */

@media(max-width:600px){

.custom-single-product{
    padding:50px 0;
}

.tkm-shop-container{
    width:92%;
}

.product-title{
    font-size:32px;
}

.product-price{
    font-size:22px;
}

.single-product-cart{
    flex-direction:row;
    align-items:center;
    flex-wrap:nowrap;
}

.single-product-cart .quantity input{
    width:65px;
}

.single_add_to_cart_button{
    padding:0 20px !important;
    font-size:14px !important;
}

.main-product-image{
    padding:25px;
}

.related-products-grid{
    grid-template-columns:1fr;
}

.single-product-features{
    grid-template-columns:1fr;
}

.feature-item{
    border-right:none;
    border-bottom:1px dashed #d0d0d0;
}

.feature-item:last-child{
    border-bottom:none;
}

.related-products-section h2{
    font-size:32px;
}

}


/* ========================================
   CUSTOM CART
======================================== */

.custom-cart-page{
    background:#f5f5f5;
    padding:80px 0;
}

/* LAYOUT */

.custom-cart-layout{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    align-items:start;
}

/* TABLE */

.custom-cart-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
}

/* HEAD */

.custom-cart-table thead{
    background:#111;
}

.custom-cart-table thead th{
    color:#fff;
    padding:22px;
    text-align:left;
    font-size:15px;
}

/* BODY */

.custom-cart-table tbody td{
    padding:25px 22px;
    border-bottom:1px solid #eee;
    vertical-align:middle;
}

/* PRODUCT FLEX */

.cart-product-flex{
    display:flex;
    align-items:center;
    gap:18px;
}

/* IMAGE */

.cart-product-image img{
    width:90px;
    border-radius:10px;
}

/* TITLE */

.cart-product-title a{
    color:#111;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
}

/* PRICE */

.custom-cart-table td{
    font-size:16px;
}

/* QUANTITY */

.custom-cart-table .quantity input{
    width:70px;
    height:45px;
    border:1px solid #ddd;
    text-align:center;
}

/* REMOVE */

.cart-remove a{
    color:#a40000;
    font-size:28px;
    text-decoration:none;
}

/* SUMMARY */

.cart-summary-box{
    background:#fff;
    padding:40px;
    border-radius:14px;
    position:sticky;
    top:100px;
}

/* TITLE */

.cart-summary-box h2{
    font-size:32px;
    margin-bottom:35px;
}

/* ROW */

.summary-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:22px;
    font-size:18px;
}

/* TOTAL */

.summary-row.total{
    padding-top:20px;
    border-top:1px solid #ddd;
    font-size:22px;
}

/* BUTTON */

.checkout-btn{
    display:block;
    width:100%;
    text-align:center;
    background:#a40000;
    color:#fff;
    text-decoration:none;
    padding:18px;
    margin-top:35px;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.checkout-btn:hover{
    background:#111;
    color:#fff;
}

/* EMPTY CART */

.empty-cart{
    background:#fff;
    padding:80px;
    text-align:center;
    border-radius:14px;
}

.return-shop-btn{
    display:inline-block;
    margin-top:25px;
    background:#111;
    color:#fff;
    padding:15px 28px;
    text-decoration:none;
}

/* MOBILE */

@media(max-width:991px){

.custom-cart-layout{
    grid-template-columns:1fr;
}

.cart-summary-box{
    position:relative;
    top:0;
}

}

/* MOBILE TABLE */

@media(max-width:768px){

.custom-cart-table thead{
    display:none;
}

.custom-cart-table,
.custom-cart-table tbody,
.custom-cart-table tr,
.custom-cart-table td{
    display:block;
    width:100%;
}

.custom-cart-table tr{
    background:#fff;
    margin-bottom:20px;
    border-radius:14px;
    overflow:hidden;
}

.custom-cart-table td{
    border:none;
    padding:18px;
}

.cart-product-flex{
    flex-direction:column;
    align-items:flex-start;
}

}