:root {
    /* Brand Colors */
    --primary: #ffd700;
    --primary-hover: #ffe44d;
    --primary-light: rgba(255, 215, 0, 0.15);
    --secondary: #1E1E1E;

    /* Background Colors */
    --bg-dark: #1E1E1E;
    --bg-light: rgba(255, 215, 0, 0.15);
    --bg-white: #FFFFFF;
    --bg-gradient: linear-gradient(145deg, #FFF9EA 0%, #FFFFFF 100%);

    /* Text Colors */
    --text-primary: #1E1E1E;
    --text-secondary: #666666;
    --text-light: #999999;

    /* Status Colors */
    --success: #22c55e;
    --warning: #ffd700;
    --danger: #ef4444;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(255, 215, 0, 0.10);
    --shadow-md: 0 4px 6px rgba(255, 215, 0, 0.15);
    --shadow-lg: 0 10px 15px rgba(251, 176, 59, 0.2);
    --shadow-hover: 0 20px 25px rgba(251, 176, 59, 0.25);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}


body {
    background: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
}

.review-pro-tooltip {
    position: relative;
}

.review-pro-tooltip .tooltip-message {
    visibility: hidden;
    width: 220px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding:5px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position above the button */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    font-size: 12px;
    transition: opacity 0.3s;
}

.review-pro-tooltip:hover .tooltip-message {
    visibility: visible;
    opacity: 1;
}

.review-pro-btn-disabled {
    background-color: #ccc;
    cursor: not-allowed;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
}



/* view cart bar */
.single-product .woocommerce-notices-wrapper {
    width: 100% !important;
}

.single-product .woocommerce-message {
    max-width: 1400px !important;
    width: 100% !important;
    margin-top: 40px !important;
}

.single-product .woocommerce-message a.button.wc-forward {
    padding: 20px 40px !important;
}

.woocommerce-message::before {
    top: 38% !important;
}

/* Sticky Bar Design  */

.sticky-bar {
    position: fixed;
    bottom: 0; /* Changed from top to bottom */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08); /* Adjusted shadow for bottom */
    transform: translateY(100%); /* Changed for bottom */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    padding: 12px 0;
}

.single .review-pro-popup.review-pro-popup-active {
    display: flex;
    animation: fadeIn 0.3s ease;
    align-items: center;
}

.single .review-pro-popup{
	z-index:99999;
}

.single .review-pro-form{
	max-height: 80vh;
    overflow: auto;
}

.single .review-pro-popup-close:before {
    top: 0px;
}

.sticky-bar.sticky-show {
    transform: translateY(0);
}

.sticky-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sticky-product {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.sticky-image-wrap {
    width: 48px;
    /* Slightly smaller for top bar */
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.sticky-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sticky-info {
    flex: 1;
    min-width: 0;
}

.sticky-title {
    font-size: 15px;
    /* Slightly smaller for top bar */
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-current-price {
    font-size: 18px;
    /* Slightly smaller for top bar */
    font-weight: 700;
    color: #ffd700;
}

.sticky-old-price {
    font-size: 13px;
    color: #95a5a6;
    text-decoration: line-through;
}

.sticky-discount {
    background: #ffd700;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.sticky-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sticky-qty {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 3px;
}

.sticky-qty-btn {
    width: 28px;
    /* Slightly smaller for top bar */
    height: 28px;
    border: none;
    background: white;
    color: #ffd700;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.sticky-qty-btn:hover {
    background: #ffd700;
    color: white;
}

.sticky-qty-input {
    width: 36px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    padding: 4px;
    -moz-appearance: textfield;
    outline: none;
    border: none !important;
}

.sticky-qty-input::-webkit-outer-spin-button,
.sticky-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.sticky-submit {
    background: #ffe44d;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    /* Slightly smaller for top bar */
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(251, 176, 59, 0.3);
}

.sticky-submit:hover {
    background: #ffe44d;
    transform: translateY(-2px); /* Changed direction for bottom bar */
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.15);
}

.sticky-submit.sticky-adding {
    pointer-events: none;
    opacity: 0.7;
}


div.product .review-pro-container .review-pro-reviews-summary {
    display: block;
    margin-bottom: 0;
    padding: 0;
    background-color: #fff;
    border-radius: 0;
    box-shadow: none;
}

div.product .review-pro-container {
    width: 100% !important;
    padding: 0 !important;
}

div.product .review-pro-container .review-pro-reviews-summary-left {
    padding-right: 0;
    display: block;
    border-right: none;
    padding-top: 0px;
    padding-left: 10px;
}

div.product .review-pro-container .review-pro-overall-rating {
    flex-direction: row-reverse;
    align-items: center;
    text-align: center;
    padding: 0;
    justify-content: left;
}

div.product .review-pro-container .review-pro-rating-stars {
    margin-bottom: 0;
    transform: scale(1.2);
    margin-right: 20px;
}

div.product .review-pro-container .review-pro-rating-number {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .product-specs .tfc-global-container {
        padding: 0 16px 20px 16px;
    }

    .sticky-bar {
        padding: 8px 0;
        top: auto; /* Ensure top is not set for mobile */
        bottom: 0; /* Explicitly set bottom for mobile */
        transform: translateY(100%); /* Hide at bottom initially */
    }

    .sticky-bar.sticky-show {
        transform: translateY(0); /* Show at bottom */
    }

    .sticky-old-price,
    .sticky-discount {
        display: none;
    }

    .sticky-submit {
        padding: 10px 10px;
        font-size: 12px;
    }

    .review-pro-container {
        padding: 30px 16px;
    }

}

@media (max-width: 576px) {
    .sticky-product {
        display: none;
    }

    .sticky-container {
        flex-direction: column;
        gap: 8px;
    }

    .sticky-controls {
        width: 100%;
    }

    .sticky-submit {
        flex: 1;
        justify-content: center;
    }

    .sticky-title {
        font-size: 13px;
    }
}


.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 12px 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.meta-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.meta-value {
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    padding-left: 4px;
}

.meta-value::before {
    content: ' : ';
    position: absolute;
    left: -4px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}



/* breadcrum css code  */
.breadcrumb-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 12px 24px;
    position: relative;
    top: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666666;
    transition: all 0.3s ease;
}

.breadcrumb-item a {
    display: flex;
    align-items: center;
    color: #666666;
    text-decoration: none;
    /* padding: 6px 8px; */
    border-radius: 6px;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #FFB800;
    background: rgba(255, 184, 0, 0.08);
}

.breadcrumb-item.active {
    color: #1A1A1A;
    font-weight: 500;
}

.home-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    margin-right: 4px;
}

.chevron-icon {
    width: 16px;
    height: 16px;
    fill: #CCCCCC;
    flex-shrink: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .single-product .woocommerce-message {
        flex-direction: column;
        gap: .5rem;
    }

    .woocommerce-message::before {
        top: 25% !important;
    }

    .breadcrumb-container {
        padding: 10px 16px;
    }

    .breadcrumb-item {
        font-size: 13px;
    }

    /* Hide "Home" text on mobile, keep icon */
    .breadcrumb-item:first-child span {
        display: none;
    }

    .home-icon {
        margin-right: 0;
    }
}

/* Animation for hover state */
@keyframes scaleUp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.breadcrumb-item a:active {
    animation: scaleUp 0.2s ease;
}

/* Optional: Add a subtle transition when page loads */
.breadcrumb-list {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional: Add scroll shadow */
.breadcrumb-container.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}



/* Single Product page  */
/* Product Info Styles */


.product-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.brand-badge {
    padding: 6px 12px;
    background: #f0f0f0;
    color: var(--text-primary);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bestseller-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #d97706;
    font-size: 12px;
    margin-left: 12px;
    font-weight: 600;
    background: rgba(217, 119, 6, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
}


.action-buttons {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.price-card-section{
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    margin: 15px 0px 0px 0px;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(255, 215, 0, 0.15);
}


/* Price Card Styles */


.price-header {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 1.5rem; */
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.current-price {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #000000;
}

.original-price {
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.price-tags {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.save-badge{
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    position: unset;
}

.save-badge {
    background: #f0f0f0;
    color: #000000;
}

.inventory-status {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 15px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stock-status i {
    color: var(--success);
    font-size: 18px;
}

.stock-text {
    font-weight: 600;
    color: var(--success);
}

.stock-quantity {
    font-size: 14px;
    color: var(--text-secondary);
}

.shipping-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}


.purchase-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-wrapper {
    display: inline-flex;
    align-items: center;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius-sm);
    padding: 0;
    flex: 0 0 auto;
    height: 40px;
    overflow: hidden;
    margin-left: 10px;
    margin-right: 10px;
}

.quantity-wrapper label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.quantity-controls {
    display: inline-flex;
    align-items: center;
    border-radius: 12px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-white);
    color:#000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.qty-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(251, 176, 59, 0.2);
}

.qty-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.qty-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#quantity {
    width: 60px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    border: none;
    background: transparent;
    color: var(--text-primary);
    padding: 0.5rem;
    margin: 0 0.5rem;
    -moz-appearance: textfield;
}

#quantity::-webkit-outer-spin-button,
#quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


body.single .add-to-cart {
    padding: 0px 20px !important;
    height: 44px;
    background: var(--primary);
    color: var(--text-primary);
    border: none;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: all 0.2s ease;
}
.buy-now {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.buy-now {
    background: var(--primary);
    color: var(--text-primary) !important;
    box-shadow: 0 4px 12px rgba(251, 176, 59, 0.15);
    padding: 12px 20px;
    margin: 30px 0;
}

.buy-now:hover{
    background: var(--primary) !important;
    color: var(--text-primary) !important;
    opacity: .8;
} 

.add-to-cart:hover,
.buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.15);
}

.add-to-cart:hover {
    background: var(--primary-hover);
}

.buy-now:hover {
    background: white;
}

.add-to-cart:active,
.buy-now:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(251, 176, 59, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .action-buttons {
        grid-template-columns: 1fr;
    }

    .add-to-cart,
    .buy-now {
        padding: 0.875rem;
        font-size: 0.9375rem;
    }
}

/* Optional Animation */
@keyframes buttonPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.98);
    }

    100% {
        transform: scale(1);
    }
}

.add-to-cart:active,
.buy-now:active {
    animation: buttonPop 0.2s ease-out;
}

@media screen and (min-width:767px) and (max-width:1024px){
.price-header {
        flex-direction: row;
        gap: 1rem;
    }
}
@media screen and (min-width:320px) and (max-width:767px){
.price-header {
        flex-direction: column;
        gap: 1rem;
    }
}
@media (max-width: 768px) {
    .product-container {
        padding: 1rem;
    }

    .product-title {
        font-size: 2rem;
    }

    /* .action-buttons {
        flex-direction: column;
    } */

    .satisfaction-guarantee {
        flex-direction: column;
        text-align: center;
    }

    .prod-specs-grid .review-pro-container .review-pro-reviews-summary-left {
        border-bottom: none !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }
}

@media (max-width: 480px) {
    .sticky-container {
        padding: 0 16px;
    }
    .save-badge{
    padding: 0rem !important;
    }
.product-brand {
    justify-content: center;
}
    .brand-section {
        flex-direction: column;
        gap: 1rem;
    }
    .single-product .woocommerce-message a.button.wc-forward {
    padding: 12px 40px !important;
}
    .product-meta {
  display: block;
    margin: 0px 0px 12px 0px;
   text-align: center;
   padding: 0px 15px;
border-bottom: none;
}
    .review-pro-container {
        padding: 16px 16px;
    }

    .badges {
        flex-direction: column;
        width: 100%;
    }

    .model-section {
        flex-direction: column;
        gap: 1rem;
    }

    .current-price {
        font-size: 2rem;
    }

}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.price-card {
    animation: fadeIn 0.5s ease-out;
}

.save-badge {
    animation: pulse 2s infinite;
}


.quick-specs {
    margin-top: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

.specs-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.specs-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

/* Accordion styles for mobile */
@media (max-width: 768px) {
    .quick-specs {
        padding: 15px;
        background-color: #fff;
        border: 1px solid;
    }

    .specs-title {
        cursor: pointer;
        margin-bottom: 0; /* Remove bottom margin when it's a clickable header */
        position: relative;
        color: #000000;
    }

    .specs-title::after {
        content: '\f067'; /* Font Awesome Plus icon */
        font-family: "Font Awesome 5 Free";
        font-weight: 900; /* Required for solid icons */
        font-size: 0.8em;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: content 0.3s ease; /* Transition content change */
    }

    .specs-title.active::after {
        content: '\f068'; /* Font Awesome Minus icon */
        transform: translateY(-50%); /* No rotation needed for plus/minus */
    }

    .specs-list {
        display: none; /* Hide by default on mobile */
        padding-top: 20px; /* Add padding when shown */
        grid-template-columns: 1fr; /* Stack items vertically on mobile */
    }

    .specs-list.active {
        display: grid; /* Show when active */
    }
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.spec-item .fas {
    color: var(--primary);
    font-size: 14px;
    margin-top: 2px;
}

.spec-details {
    flex: 1;
}

.spec-name {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.spec-value {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.similar-models {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.model-capsule:hover {
    background: var(--primary-light);
    color: var(--text-primary);
    border-color: var(--primary);
}

.similar-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}
 /* .model-capsules {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
gap: 10px;
text-align: center;
 } */
 .model-capsules{
    display: flex;
    flex-wrap: wrap;
    gap:12px;
 }
.model-capsule {
    padding: 8px 15px;
    background: #f8f9fa;
    color: #1E1E1E !important;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all var(--transition-fast);
}


/* Sticky Gallery */
.product-gallery {
    position: sticky;
    top: 2rem;
    height: fit-content;
    z-index: 10;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sticky-container {
        padding: 0 16px;
    }
.spec-name {
    font-size: 13px;
    color: #000000;
    margin-bottom: 2px;
}
.spec-value {
    font-weight: 600;
    color: #000;
    font-size: 14px;
}
    .delivery-details {
        grid-template-columns: 1fr;
    }

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



/** Single product page css**/


.single-product .siderOuter .onsale {
    display: none;
}

.single-product .siderOuter {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    padding: 2rem 0rem;
}

.summary .product_title {
    font-size: 2rem;
    font-weight: 700;
    padding-top: 20px !important;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    background: linear-gradient(to right, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.summary .woocommerce-product-details__short-description p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.blogSection .tfc-global-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}
.price-card .buy-now-price-button{
    background-color: #FFD700;
    border-radius: 10px;
    display: block;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    margin-top: 16px;;
}


#typing-text{
    margin: 10px 10px;
    font-size: 20px;
    font-weight: 600;
     color: #000000;
}




@media (max-width: 1200px) {
    .single-product .siderOuter {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 991px) {
    .single-product .siderOuter {
        display: flex; /* Changed to flex */
        flex-direction: column; /* Stack vertically */
        gap: 2rem;
    }

    .single-product .siderOuter .summary {
        order: 1 !important; /* Product title and summary first */
    }

    .single-product .siderOuter .woocommerce-product-gallery {
        order: 2 !important; /* Product image gallery second */
        position: relative !important;
        top: 0 !important;
    }

    .summary .product_title {
        font-size: 2rem;
    }
}



.quantity-wrapper .input-text.qty {
    width: 45px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    border: none;
    background: transparent;
    color: var(--text-primary);
    padding: 0.5rem;
    margin: 0 0.5rem;
    outline: none;
}

.siderOuter .woocommerce-product-gallery {
    position: sticky !important;
    top: 4rem;
    height: fit-content;
    z-index: 10;
    background: #fff;
}

.single-product .flex-viewport {
    box-shadow: 0 4px 6px rgba(255, 215, 0, 0.15);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.single-product .flex-control-nav {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    justify-content: center;
}

.single-product .flex-control-nav li {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.blogSection {
    background: #1a1a1a;
    padding: 64px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.blogSection>span,
.blogSection>h2,
.blogSection>p {
    text-align: center;
}

.blogSection>span {
    display: block;
    margin: auto;
    width: fit-content;
}

.blogSection>h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
    margin-top: 20px;
}

.blogSection .tfc-blog-content h3 {
    color: #000;
}


.blogSection>p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 40px;
}



body.woocommerce-cart .site-main {
    margin-top: 70px;
}

body.woocommerce-cart .wc-block-components-sidebar-layout {
    max-width: 1400px;
    width: 100%;
    margin: auto;
    justify-content: space-between;
    padding-inline: 2rem;
    margin-bottom: 4rem !important;
}

body.woocommerce-cart .wc-block-components-main {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 60%;
    padding: 1rem !important;
}

body.woocommerce-cart .wc-block-components-main table tr th:first-child {
    width: 18%;
}

body.woocommerce-cart .wc-block-components-main table tr th {
    font-size: 16px;
}

body.woocommerce-cart .wc-block-components-sidebar {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem !important;
    position: sticky;
    top: 7rem;
    height: fit-content;
    width: 35%;
}

body.woocommerce-cart .wc-block-components-main .wc-block-cart-items th {
    padding: 15px 16px 15px 0;
}

body.woocommerce-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-cart__totals-title {
    padding: 15px !important;
    font-size: 16px;
}

body.woocommerce-cart {
    background: #fff9e6;
}


body.woocommerce-cart button.wc-block-components-button {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    opacity: 1;
}

body.woocommerce-cart .wc-block-cart__submit-container {
    text-align: center;
}

body.woocommerce-cart a.wc-block-components-button {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    opacity: 1;
    width: 93%;
    border-radius: 8px;
    padding: 15px;
}

.woocommerce-product-gallery__image.flex-active-slide {
    min-height: 500px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.review-pro-container .review-pro-reviews-masonry {
    margin-bottom: 1rem !important;
}

@media (max-width: 768px) {
    body.woocommerce-cart .wc-block-components-sidebar-layout {
        padding-inline: 1rem;
    }

    .blogSection .tfc-global-container {
        padding: 0 16px;
    }

    .blogSection {
        padding: 30px 0;
    }
    .buy-now {
    margin: 0px 0 !important;
}
.price-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.price-card .buy-now-price-button{
        padding: 10px 50px;
    background-color: #FFD700;
    border-radius: 10px;
      margin-top: 0px;;
}
    .price-header {
        gap: 0rem !important;
    }
    .current-price {
    font-size: 30px !important;
    font-weight: 600 !important;
    }
    .bestseller-badge {
        margin-left: 0px;
    }
    .tfc-meta-value {
        margin-left: 0px;
    }
    .container {
    padding: 0px 20px;
    }
}

@media (max-width: 480px) {
    .single-product .siderOuter img.zoomImg {
        width: 100% !important;
    }
#typing-text {
    font-size: 16px;
    font-weight: 500;
}
    body.woocommerce-cart .wc-block-components-sidebar-layout {
        gap: 2rem;
    }
   .model-capsules .model-capsule {
    padding: 6px 5px;
    font-size: 12px;
    }
.model-capsules{
    display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    text-align: center;
}
.blogSection>h2 {
    font-size: 1.5rem;
}
blogSection>p {
    font-size: 18px;
}
.inventory-status {
    margin: 10px 0;
    }
    .brand-badge , .bestseller-badge, .tfc-meta-value {
        padding: 6px 6px;
        font-size: 10px;
    }
  
}
