/* DigiLook E-Commerce Redesign (v2) Stylesheet */

:root {
    /* Brand Colors */
    --brand-blue: #4B93D0;
    --brand-blue-hover: #357ABD;
    --brand-blue-light: #EBF4FC;
    --brand-blue-glow: rgba(75, 147, 208, 0.15);
    --dark-navy: #15283C;
    --dark-navy-light: #233C56;
    --dark-navy-rgb: 21, 40, 60;
    
    /* Neutral Colors */
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --border-light: #F1F5F9;
    
    /* Semantic Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --heart-red: #F74B81;
    
    /* Typography & Spacing */
    --font-sans: 'Source Sans 3', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-round: 50%;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px -10px rgba(21, 40, 60, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 40px -15px rgba(21, 40, 60, 0.15), 0 4px 12px -2px rgba(75, 147, 208, 0.06);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Core Layout Adjustments */
.v2-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}
.v2-section.bg-alt {
    background-color: var(--bg-light);
}

.v2-section-title {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.v2-section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-navy);
    position: relative;
    padding-bottom: 8px;
    margin: 0;
}
.v2-section-title h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--brand-blue);
    border-radius: 2px;
}
.v2-section-title .title-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 5px;
}
.v2-section-title .section-link {
    color: var(--brand-blue);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-fast);
}
.v2-section-title .section-link:hover {
    color: var(--brand-blue-hover);
    transform: translateX(3px);
}

/* 1. Hero Slider v2 */
.v2-hero-slider-container {
    padding-top: 25px;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-light) 100%);
}
.v2-hero-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    background-color: var(--dark-navy);
    height: 480px;
    display: flex;
    align-items: center;
}
.v2-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    z-index: 1;
}
.v2-hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(21, 40, 60, 0.9) 0%, rgba(21, 40, 60, 0.6) 40%, rgba(21, 40, 60, 0) 100%);
    z-index: 2;
}
.v2-hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    padding: 0 80px;
    color: var(--bg-white);
}
.v2-hero-badge {
    display: inline-block;
    background-color: var(--brand-blue);
    color: var(--bg-white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.v2-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--bg-white);
}
.v2-hero-content p {
    font-size: 16px;
    color: #CBD5E1;
    margin-bottom: 30px;
    line-height: 1.6;
}
.v2-btn-primary {
    display: inline-flex;
    align-items: center;
    background-color: var(--brand-blue);
    color: var(--bg-white) !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition-normal);
    box-shadow: 0 4px 14px var(--brand-blue-glow);
    border: none;
}
.v2-btn-primary:hover {
    background-color: var(--brand-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 147, 208, 0.3);
}
.v2-btn-primary i {
    margin-left: 8px;
    transition: var(--transition-fast);
}
.v2-btn-primary:hover i {
    transform: translateX(4px);
}

/* Slick overrides for Hero Slider */
.v2-hero-card .slick-list,
.v2-hero-card .slick-track,
.v2-hero-card .slick-slide,
.v2-hero-card .slick-slide > div {
    height: 100%;
}
.v2-hero-card .slick-dots {
    bottom: 25px;
    z-index: 10;
}
.v2-hero-card .slick-dots li button:before {
    color: var(--bg-white);
    opacity: 0.5;
    font-size: 10px;
}
.v2-hero-card .slick-dots li.slick-active button:before {
    color: var(--brand-blue);
    opacity: 1;
    font-size: 12px;
}

/* 2. Categories v2 */
.v2-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}
.v2-category-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.v2-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-blue);
}
.v2-category-img-wrapper {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-round);
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition-normal);
}
.v2-category-card:hover .v2-category-img-wrapper {
    background-color: var(--brand-blue-light);
    transform: scale(1.05);
}
.v2-category-img-wrapper img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
    transition: var(--transition-normal);
}
.v2-category-card:hover .v2-category-img-wrapper img {
    transform: rotate(5deg);
}
.v2-category-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-navy);
    margin: 0 0 5px 0;
    transition: var(--transition-fast);
}
.v2-category-card:hover h3 {
    color: var(--brand-blue);
}
.v2-category-card span {
    font-size: 12px;
    color: var(--text-muted);
}

/* 3. Product Grids & Cards v2 */
.v2-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .v2-products-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 992px) {
    .v2-products-grid { grid-template-columns: repeat(3, 1fr); }
    .v2-hero-card { height: 400px; }
    .v2-hero-content { padding: 0 40px; }
    .v2-hero-content h1 { font-size: 36px; }
}
@media (max-width: 768px) {
    .v2-products-grid { grid-template-columns: repeat(2, 1fr); }
    .v2-hero-card { height: 350px; }
    .v2-hero-content h1 { font-size: 28px; }
    .v2-hero-content p { font-size: 14px; }
    .v2-section-title { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 480px) {
    .v2-products-grid { grid-template-columns: 1fr; }
    .v2-categories-grid { grid-template-columns: repeat(2, 1fr); }
}

.v2-product-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.v2-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(75, 147, 208, 0.3);
}

.v2-product-image-box {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background-color: var(--bg-light);
    overflow: hidden;
    width: 100%;
}
.v2-product-image-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.v2-product-card:hover .v2-product-image-box img {
    transform: scale(1.08);
}

/* Badge overlay */
.v2-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    background-color: var(--dark-navy);
    color: var(--bg-white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.v2-product-badge.popular {
    background-color: var(--brand-blue);
}
.v2-product-badge.bestseller {
    background-color: #F59E0B;
}

/* Action button overlays */
.v2-product-actions {
    position: absolute;
    top: 12px;
    right: -50px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: var(--transition-normal);
}
.v2-product-card:hover .v2-product-actions {
    right: 12px;
}
.v2-action-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-round);
    background-color: var(--bg-white);
    border: none;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition-fast);
}
.v2-action-btn:hover {
    background-color: var(--brand-blue);
    color: var(--bg-white);
    transform: scale(1.1);
}
.v2-action-btn.wishlisted {
    color: var(--heart-red);
}
.v2-action-btn.wishlisted:hover {
    background-color: var(--heart-red);
    color: var(--bg-white);
}

.v2-product-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.v2-product-category {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.v2-product-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.4;
    margin: 0 0 10px 0;
    height: 42px; /* Fix height to align grids */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.v2-product-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}
.v2-product-title a:hover {
    color: var(--brand-blue);
}

.v2-product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}
.v2-product-rating i {
    color: var(--warning);
    font-size: 12px;
}
.v2-product-rating span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    margin-left: 2px;
}

.v2-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.v2-product-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark-navy);
}

/* Custom dropdown add to cart */
.v2-add-cart-dropdown {
    position: relative;
}
.v2-add-cart-btn {
    background-color: var(--brand-blue-light);
    color: var(--brand-blue);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
}
.v2-add-cart-btn:hover,
.v2-add-cart-dropdown.show .v2-add-cart-btn {
    background-color: var(--brand-blue);
    color: var(--bg-white);
}

.v2-add-cart-dropdown .dropdown-menu {
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 6px 0;
    min-width: 180px;
    right: 0;
    left: auto;
}
.v2-add-cart-dropdown .dropdown-item {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    color: var(--text-main);
    transition: var(--transition-fast);
}
.v2-add-cart-dropdown .dropdown-item:hover {
    background-color: var(--brand-blue-light);
    color: var(--brand-blue);
}

/* 4. Offers & Coupon Cards */
.v2-coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.v2-coupon-card {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-navy-light) 100%);
    border-radius: var(--radius-md);
    padding: 24px;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}
.v2-coupon-card::before,
.v2-coupon-card::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: var(--radius-round);
    background-color: var(--bg-light); /* Cutout design */
    top: 50%;
    transform: translateY(-50%);
}
.v2-coupon-card::before { left: -10px; }
.v2-coupon-card::after { right: -10px; }

.v2-coupon-badge {
    background-color: var(--brand-blue);
    color: var(--bg-white);
    align-self: flex-start;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.v2-coupon-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 5px 0;
    color: var(--bg-white);
}
.v2-coupon-card p {
    font-size: 13px;
    color: #CBD5E1;
    margin: 0 0 20px 0;
}
.v2-coupon-code-box {
    display: flex;
    margin-top: auto;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.05);
    justify-content: space-between;
    align-items: center;
}
.v2-coupon-code {
    font-family: monospace;
    font-size: 15px;
    font-weight: 700;
    color: var(--bg-white);
    letter-spacing: 1px;
}
.v2-coupon-copy-btn {
    background: none;
    border: none;
    color: var(--brand-blue);
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
    background-color: var(--bg-white);
    transition: var(--transition-fast);
}
.v2-coupon-copy-btn:hover {
    background-color: var(--brand-blue);
    color: var(--bg-white);
}

/* 5. Blog Section v2 */
.v2-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 992px) {
    .v2-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .v2-blog-grid { grid-template-columns: 1fr; }
}

.v2-blog-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-normal);
}
.v2-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(75, 147, 208, 0.2);
}
.v2-blog-img-box {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background-color: var(--bg-light);
}
.v2-blog-img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.v2-blog-card:hover .v2-blog-img-box img {
    transform: scale(1.06);
}
.v2-blog-date-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: var(--brand-blue);
    color: var(--bg-white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}
.v2-blog-info {
    padding: 20px;
}
.v2-blog-meta {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    gap: 12px;
}
.v2-blog-meta span i {
    margin-right: 4px;
    color: var(--brand-blue);
}
.v2-blog-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.4;
    margin: 0 0 10px 0;
}
.v2-blog-info h3 a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}
.v2-blog-info h3 a:hover {
    color: var(--brand-blue);
}
.v2-blog-info p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0 0 15px 0;
}
.v2-blog-readmore {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-fast);
}
.v2-blog-readmore i {
    margin-left: 5px;
    transition: var(--transition-fast);
}
.v2-blog-readmore:hover {
    color: var(--brand-blue-hover);
}
.v2-blog-readmore:hover i {
    transform: translateX(4px);
}

/* 6. Testimonials & Reviews v2 */
.v2-reviews-slider-container {
    overflow: hidden;
    padding: 10px 0;
}
.v2-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 992px) {
    .v2-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .v2-reviews-grid { grid-template-columns: 1fr; }
}

.v2-review-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-normal);
}
.v2-review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(75, 147, 208, 0.15);
}
.v2-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.v2-review-stars {
    color: var(--warning);
    font-size: 13px;
}
.v2-review-date {
    font-size: 11px;
    color: var(--text-muted);
}
.v2-review-card p {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.6;
    margin: 0 0 16px 0;
    font-style: italic;
    color: #475569;
}
.v2-review-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}
.v2-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
    background-color: var(--brand-blue-light);
    color: var(--brand-blue);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}
.v2-review-user-info {
    display: flex;
    flex-direction: column;
}
.v2-review-user-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-navy);
}
.v2-review-user-verified {
    font-size: 11px;
    color: var(--success);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}
.v2-review-product-tag {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border-light);
    font-size: 11px;
    color: var(--text-muted);
}
.v2-review-product-tag a {
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 600;
}
.v2-review-product-tag a:hover {
    text-decoration: underline;
}

/* Micro-animations and Utilities */
.wow {
    visibility: hidden; /* WOW.js support */
}

/* 7. Footer v2 */
.v2-footer {
    background-color: var(--dark-navy);
    color: #E2E8F0;
    padding: 70px 0 30px 0;
    font-family: var(--font-sans);
    border-top: 4px solid var(--brand-blue);
}
.v2-footer a {
    color: #94A3B8;
    text-decoration: none;
    transition: var(--transition-fast);
}
.v2-footer a:hover {
    color: var(--brand-blue);
    padding-left: 4px;
}
.v2-footer-top {
    margin-bottom: 50px;
}
.v2-footer-col {
    margin-bottom: 30px;
}
.v2-footer-col h4 {
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.v2-footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background-color: var(--brand-blue);
    border-radius: 2px;
}
.v2-footer-about-logo {
    max-width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* makes the dark logo white */
}
.v2-footer-about-text {
    font-size: 14px;
    line-height: 1.6;
    color: #94A3B8;
    margin-bottom: 20px;
}
.v2-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.v2-footer-contact-list li {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #94A3B8;
}
.v2-footer-contact-list li i {
    color: var(--brand-blue);
    margin-top: 3px;
}
.v2-footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.v2-footer-links-list li {
    margin-bottom: 12px;
}
.v2-footer-newsletter-text {
    font-size: 14px;
    line-height: 1.6;
    color: #94A3B8;
    margin-bottom: 20px;
}
.v2-footer-newsletter-form {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.v2-footer-newsletter-input {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    color: var(--bg-white);
    font-size: 14px;
    transition: var(--transition-fast);
}
.v2-footer-newsletter-input:focus {
    outline: none;
    border-color: var(--brand-blue);
    background-color: rgba(255, 255, 255, 0.08);
}
.v2-footer-newsletter-btn {
    background-color: var(--brand-blue);
    color: var(--bg-white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
}
.v2-footer-newsletter-btn:hover {
    background-color: var(--brand-blue-hover);
}
.v2-footer-social-links {
    display: flex;
    gap: 12px;
}
.v2-footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white) !important;
    transition: var(--transition-fast);
}
.v2-footer-social-btn:hover {
    background-color: var(--brand-blue);
    transform: translateY(-2px);
    padding-left: 0 !important;
}
.v2-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.v2-footer-copyright {
    font-size: 13px;
    color: #64748B;
}
.v2-footer-bottom-links {
    display: flex;
    gap: 20px;
    font-size: 13px;
}
@media (max-width: 768px) {
    .v2-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* 9. Product Listing Page & Filtering */
.v2-sidebar-widget {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.v2-sidebar-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark-navy);
    margin: 0 0 15px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-light);
    position: relative;
}
.v2-sidebar-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 40px;
    height: 2px;
    background-color: var(--brand-blue);
}
.v2-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 250px;
    overflow-y: auto;
}
.v2-filter-list::-webkit-scrollbar {
    width: 6px;
}
.v2-filter-list::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}
.v2-filter-list::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 10px;
}
.v2-filter-list li {
    margin-bottom: 10px;
}
.v2-filter-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    user-select: none;
    margin: 0;
    transition: var(--transition-fast);
}
.v2-filter-checkbox-label:hover {
    color: var(--brand-blue);
}
.v2-filter-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1.5px solid var(--border-color);
    outline: none;
    cursor: pointer;
    transition: var(--transition-fast);
    accent-color: var(--brand-blue);
}
.v2-filter-count {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    background-color: var(--bg-light);
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: auto;
}

/* Category/Subcategory indentation */
.v2-subcategory-list {
    list-style: none;
    padding-left: 20px;
    margin-top: 8px;
    margin-bottom: 4px;
}

/* Price Range Widget */
.v2-price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}
.v2-price-input-box {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    width: 45%;
}
.v2-price-input-box span {
    font-size: 13px;
    color: var(--text-muted);
    margin-right: 4px;
}
.v2-price-input-box input {
    border: none;
    background: none;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-navy);
    width: 100%;
    outline: none;
}
.v2-price-inputs-divider {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}
.v2-price-submit-btn {
    width: 100%;
    background-color: var(--brand-blue-light);
    color: var(--brand-blue);
    border: none;
    font-weight: 700;
    padding: 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}
.v2-price-submit-btn:hover {
    background-color: var(--brand-blue);
    color: var(--bg-white);
}

/* Listing controls */
.v2-listing-header {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
    gap: 15px;
}
.v2-results-count {
    font-size: 14px;
    color: var(--text-main);
    font-weight: 600;
}
.v2-sort-control {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    white-space: nowrap !important;
}
.v2-sort-control span {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    display: inline-block !important;
}
.v2-sort-select {
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-navy);
    outline: none;
    background-color: var(--bg-white);
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-block !important;
    width: auto !important;
}
.v2-sort-select:focus {
    border-color: var(--brand-blue);
}

/* Active Filter Tags */
.v2-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    align-items: center;
}
.v2-active-filters-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    margin-right: 5px;
}
.v2-active-filter-pill {
    display: inline-flex;
    align-items: center;
    background-color: var(--brand-blue-light);
    color: var(--brand-blue);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    gap: 6px;
}
.v2-active-filter-pill a {
    color: inherit;
    text-decoration: none;
    font-size: 10px;
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}
.v2-active-filter-pill a:hover {
    color: var(--danger);
    transform: scale(1.1);
}
.v2-clear-filters-btn {
    font-size: 12px;
    font-weight: 700;
    color: var(--danger);
    text-decoration: none;
    margin-left: 8px;
    transition: var(--transition-fast);
}
.v2-clear-filters-btn:hover {
    text-decoration: underline;
}

/* Empty State listing */
.v2-empty-listing {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.v2-empty-listing i {
    font-size: 48px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.v2-empty-listing h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 10px;
}
.v2-empty-listing p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Pagination Overrides */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.pagination .page-item .page-link {
    border: 1px solid var(--border-color);
    color: var(--dark-navy);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    transition: var(--transition-fast);
}
.pagination .page-item.active .page-link {
    background-color: var(--brand-blue) !important;
    border-color: var(--brand-blue) !important;
    color: var(--bg-white) !important;
}
.pagination .page-item .page-link:hover {
    background-color: var(--brand-blue-light);
    color: var(--brand-blue);
    border-color: var(--brand-blue);
}
.pagination .page-item.disabled .page-link {
    color: var(--text-muted);
    background-color: var(--bg-light);
    border-color: var(--border-color);
}

/* Mobile Filter Toggle Button */
.v2-mobile-filter-toggle {
    width: 100%;
    background-color: var(--brand-blue);
    color: var(--bg-white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}
.v2-mobile-filter-toggle:hover {
    background-color: var(--brand-blue-hover);
    color: var(--bg-white);
}

/* Listing Top Bar Responsive Rules */
@media (max-width: 768px) {
    .v2-listing-header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 12px 16px;
    }
    .v2-results-count {
        text-align: center;
    }
    .v2-sort-control {
        justify-content: center;
        width: 100%;
    }
    .v2-sort-select {
        flex-grow: 1;
        max-width: 200px;
    }
}

/* ==========================================================================
   Product Detail Page Redesign (v2)
   ========================================================================== */

/* 1. Detail Page Gallery Styling */
.detail-gallery {
    position: relative;
    background-color: var(--bg-white);
    padding: 15px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.detail-gallery .zoom-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9);
    width: 38px;
    height: 38px;
    border-radius: var(--radius-round);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-sm);
    color: var(--text-main);
    font-size: 16px;
}
.product-image-slider {
    border-radius: var(--radius-sm);
    overflow: hidden;
    background-color: var(--bg-light);
    margin-bottom: 15px;
}
.product-image-slider figure {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
}
.product-image-slider img {
    max-height: 400px;
    object-fit: contain;
    transition: var(--transition-normal);
}
.slider-nav-thumbnails {
    margin: 0 -5px;
}
.slider-nav-thumbnails div {
    padding: 0 5px;
    cursor: pointer;
}
.slider-nav-thumbnails img {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    background-color: var(--bg-light);
    height: 80px;
    width: 100%;
    object-fit: contain;
}
.slider-nav-thumbnails .slick-current img,
.slider-nav-thumbnails div:hover img {
    border-color: var(--brand-blue);
    box-shadow: 0 0 8px rgba(75, 147, 208, 0.25);
    background-color: var(--bg-white);
}

/* 2. Detail Info Header */
.detail-info {
    padding-left: 20px !important;
}
.title-detail {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--dark-navy);
    margin-bottom: 12px;
}
.product-detail-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.product-rate-cover {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Pricing Area */
.product-price-cover {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}
.product-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.current-price {
    font-size: 38px;
    font-weight: 800;
    color: var(--brand-blue) !important;
    letter-spacing: -0.5px;
}
.old-price {
    font-size: 20px;
    text-decoration: line-through;
    color: var(--text-muted);
}
.save-price {
    font-size: 13px;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: var(--bg-white);
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.2);
}

.short-desc {
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* 3. Attribute Swatches (Filters) */
.variant-attribute {
    margin-bottom: 25px;
}
.variant-attribute strong {
    display: block;
    font-size: 14px;
    color: var(--dark-navy);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.list-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.list-filter li {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block;
}
.list-filter li a {
    display: inline-block;
    padding: 8px 18px;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-main);
    font-weight: 700;
    background-color: var(--bg-white);
    transition: all var(--transition-fast);
    text-decoration: none !important;
    font-size: 13px;
}
.list-filter li.active a {
    background-color: var(--brand-blue-light);
    border-color: var(--brand-blue);
    color: var(--brand-blue) !important;
    box-shadow: 0 4px 12px var(--brand-blue-glow);
}
.list-filter li:hover:not(.disabled-option) a {
    border-color: var(--brand-blue);
    color: var(--brand-blue) !important;
}
.list-filter li.disabled-option {
    opacity: 0.5;
    pointer-events: none !important;
}
.list-filter li.disabled-option a {
    background-color: var(--border-light);
    border: 2px dashed var(--border-color);
    color: var(--text-muted) !important;
    text-decoration: line-through !important;
}

/* 4. Quantity & Button Actions */
.detail-extralink {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 35px;
}
.detail-qty {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 4px 8px;
    background-color: var(--bg-white);
    height: 52px;
}
.detail-qty a {
    color: var(--text-muted);
    font-size: 18px;
    padding: 0 8px;
    transition: color var(--transition-fast);
    text-decoration: none !important;
}
.detail-qty a:hover {
    color: var(--brand-blue);
}
.detail-qty input.qty-val {
    width: 38px;
    text-align: center;
    border: none !important;
    font-weight: 700;
    font-size: 16px;
    color: var(--dark-navy);
    background: transparent;
    padding: 0;
    outline: none !important;
}
.product-extra-link2 {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-grow: 1;
}
#add-to-cart-btn, #buy-now-btn {
    height: 52px;
    padding: 0 30px;
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    border: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
#add-to-cart-btn.button-add-to-cart {
    background-color: var(--brand-blue);
    color: var(--bg-white) !important;
}
#add-to-cart-btn.button-add-to-cart:hover {
    background-color: var(--brand-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(75, 147, 208, 0.3);
}
#add-to-cart-btn.go-to-cart-btn {
    background-color: var(--success);
    color: var(--bg-white) !important;
}
#add-to-cart-btn.go-to-cart-btn:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}
#add-to-cart-btn:disabled,
#buy-now-btn:disabled {
    background-color: var(--border-color) !important;
    color: var(--text-muted) !important;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}
#buy-now-btn {
    background-color: #FF9900;
    color: var(--bg-white) !important;
}
#buy-now-btn:hover:not(:disabled) {
    background-color: #E68A00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.3);
}
.product-extra-link2 .action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--text-muted);
    transition: all var(--transition-fast);
    text-decoration: none !important;
}
.product-extra-link2 .action-btn:hover {
    border-color: var(--heart-red);
    color: var(--heart-red);
    background-color: #FFF1F5;
    transform: translateY(-2px);
}
.product-extra-link2 .action-btn.wishlisted {
    border-color: var(--heart-red);
    color: var(--heart-red);
    background-color: #FFF1F5;
}
.product-extra-link2 .action-btn.wishlisted i {
    color: var(--heart-red);
}

/* 5. Marketing Offers section */
#bulk-offers-section {
    background: linear-gradient(135deg, var(--brand-blue-light) 0%, rgba(75, 147, 208, 0.04) 100%) !important;
    border: 2px dashed rgba(75, 147, 208, 0.3) !important;
    border-radius: var(--radius-md) !important;
    padding: 20px !important;
    box-shadow: var(--shadow-sm);
}
#bulk-offers-section h5 {
    color: var(--dark-navy) !important;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}
.bulk-offer-card {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    padding: 12px !important;
    transition: all var(--transition-fast);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
.bulk-offer-card:hover {
    border-color: var(--success);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* 6. Product Metadata Specifications Grid */
.product-meta-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 22px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    margin-top: 30px;
    border: 1px solid var(--border-light);
}
.product-meta-item {
    display: flex;
    flex-direction: column;
}
.product-meta-label {
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.8px;
}
.product-meta-value {
    color: var(--dark-navy);
    font-weight: 700;
    font-size: 14px;
}
.product-meta-value a {
    color: var(--brand-blue);
    text-decoration: none !important;
    transition: color var(--transition-fast);
}
.product-meta-value a:hover {
    color: var(--brand-blue-hover);
}
.v2-tag-pill {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--text-main);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid var(--border-color);
    margin-right: 5px;
    margin-top: 4px;
    font-weight: 600;
    transition: all var(--transition-fast);
}
.v2-tag-pill:hover {
    border-color: var(--brand-blue);
    background-color: var(--brand-blue-light);
    color: var(--brand-blue);
}

/* 7. Product Tabs Section */
.product-info {
    margin-top: 60px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}
.product-info .nav-tabs {
    border-bottom: 2px solid var(--border-color) !important;
    gap: 30px;
    margin-bottom: 30px;
}
.product-info .nav-item {
    margin-bottom: -2px;
}
.product-info .nav-link {
    border: none !important;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-muted) !important;
    position: relative;
    background: transparent !important;
    transition: color var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-info .nav-link.active {
    color: var(--brand-blue) !important;
}
.product-info .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: var(--brand-blue);
    border-radius: 2px;
}
.entry-main-content {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
}

/* 8. Comments & Reviews list */
.comments-area {
    margin-top: 20px;
}
.comments-area h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 25px;
}
.single-comment {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 25px;
    border: 1px solid var(--border-light);
    margin-bottom: 20px;
    transition: transform var(--transition-fast);
}
.single-comment:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.comments-area .thumb {
    min-width: 80px;
    margin-right: 15px;
}
.comments-area .thumb img {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-round);
    border: 2px solid var(--bg-white);
    box-shadow: var(--shadow-sm);
}
.comments-area .desc {
    flex-grow: 1;
}
.comments-area .desc h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}
.comments-area .desc p {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

/* Progress ratings bars */
.progress-bar-rating-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.progress-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}
.progress-rating-row span {
    min-width: 50px;
}
.progress-rating-row .progress {
    flex-grow: 1;
    background-color: var(--border-color);
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 0;
}
.progress-rating-row .progress-bar {
    background-color: var(--warning);
    height: 100%;
}
.progress-rating-row .rating-count {
    min-width: 30px;
    text-align: right;
    color: var(--text-muted);
}

/* Star selection hover styling */
.star-rating i {
    transition: transform 0.15s ease;
}
.star-rating i:hover {
    transform: scale(1.25);
}

/* ==========================================================================
   Cart Page Redesign (v2) - Technical Grid
   ========================================================================== */

/* Page Section Background */
.v2-cart-section {
    background-color: #FAFAFA;
    padding: 60px 0 100px 0;
    min-height: 80vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Cart Header Styling */
.v2-clean-cart-title {
    font-size: 32px;
    font-weight: 800;
    color: #000000;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}
.v2-clean-cart-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: baseline; 
    border-bottom: 2px solid #000000; 
}
.v2-clean-cart-count-badge {
    
    font-size: 13px;
    color: #4B5563;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Alert Message Line */
.v2-cart-saved-alert {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #1F2937;
    padding: 16px 0;
    border-bottom: 1px solid #E5E7EB;
}
.v2-cart-saved-alert i {
    color: #111827;
}

/* List Row Elements */
.v2-clean-cart-list {
    margin-top: 10px;
}
.v2-clean-cart-row {
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    transition: opacity 0.2s ease;
}

/* Thumbnail images */
.v2-clean-cart-image {
    width: 110px;
    height: 110px;
    background-color: #EDEDED;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 0px;
}
.v2-clean-cart-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 10px;
}

/* Product Info Cell */
.v2-clean-cart-info {
    padding-left: 20px;
}
.v2-clean-cart-product-title {
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}
.v2-clean-cart-product-title a {
    color: #000000 !important;
    text-decoration: none !important;
}
.v2-clean-cart-options {
    font-size: 11px;
    color: #6B7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quantity Box Buttons */
.v2-clean-qty-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid #D1D5DB;
    border-radius: 0px;
    height: 36px;
    background-color: #FFFFFF;
    overflow: hidden;
}
.v2-clean-qty-box .qty-btn {
    width: 32px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #000000;
    text-decoration: none !important;
    background-color: #FFFFFF;
    transition: background-color 0.1s ease;
}
.v2-clean-qty-box .qty-btn:hover {
    background-color: #F3F4F6;
}
.v2-clean-qty-box input.qty-val {
    width: 38px;
    height: 100%;
    border-top: none !important;
    border-bottom: none !important;
    border-left: 1px solid #D1D5DB !important;
    border-right: 1px solid #D1D5DB !important;
    outline: none !important;
    text-align: center;
    font-weight: bold;
    font-size: 13px;
    color: #000000;
    background: transparent;
    padding: 0;
    
}

/* Price & Remove Display on the Right */
.v2-clean-cart-right-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    min-height: 80px;
    min-width: 120px;
}
.v2-clean-cart-subtotal-text {
    
    font-size: 16px;
    color: #000000;
    font-weight: bold;
}
.v2-clean-cart-remove-link {
    font-size: 10px;
    font-weight: bold;
    color: #4B5563 !important;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #9CA3AF;
    padding-bottom: 1px;
    transition: color 0.1s ease, border-color 0.1s ease;
}
.v2-clean-cart-remove-link:hover {
    color: #000000 !important;
    border-color: #000000;
}

/* Instructions */
.v2-clean-cart-instructions {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    color: #4B5563;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.1s ease;
}
.v2-clean-cart-instructions:hover {
    color: #000000;
}

/* Summary Box Container */
.v2-clean-summary-container {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 0px;
    padding: 30px;
}
.v2-clean-summary-title {
    font-size: 18px;
    font-weight: 800;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}
.v2-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #1F2937;
    margin-bottom: 16px;
}
.v2-summary-row-label {
    color: #4B5563;
}
.v2-summary-row-val {
    font-weight: bold;
    color: #000000;
    
}
.v2-summary-row-val.shipping-subtext {
    font-family: inherit;
    font-size: 11px;
    color: #6B7280;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.v2-summary-divider {
    border-top: 1px solid #E5E7EB;
    margin: 20px 0;
}
.v2-promo-code-title {
    font-size: 11px;
    font-weight: 800;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.v2-promo-input-group {
    display: flex;
    margin-bottom: 20px;
}
.v2-promo-input-group input {
    flex-grow: 1;
    height: 38px;
    border: 1px solid #D1D5DB;
    border-right: none;
    border-radius: 0px;
    padding: 0 12px;
    font-size: 12px;
    background-color: #F9FAFB;
    outline: none !important;
    text-transform: uppercase;
    
}
.v2-promo-input-group input:focus {
    border-color: #9CA3AF;
}
.v2-promo-input-group .promo-btn {
    height: 38px;
    background-color: #000000;
    color: #FFFFFF;
    border: none;
    border-radius: 0px;
    padding: 0 20px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.1s ease;
}
.v2-promo-input-group .promo-btn:hover {
    background-color: #262626;
}

/* Total block */
.v2-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 25px;
}
.v2-total-label {
    font-size: 16px;
    font-weight: 800;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.v2-total-value {
    font-size: 22px;
    font-weight: 800;
    color: #000000;
    
}

/* Secure Checkout button */
.v2-secure-checkout-btn {
    height: 48px;
    background-color: #107C41 !important; /* Rich green */
    color: #FFFFFF !important;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    transition: background-color 0.1s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}
.v2-secure-checkout-btn:hover {
    background-color: #0B5E30 !important;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .v2-clean-cart-row {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        gap: 15px;
    }
    .v2-clean-cart-info {
        padding-left: 0;
        margin-top: 10px;
    }
    .v2-clean-cart-right-panel {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        min-height: auto;
    }
}

/* ==========================================================================
   Wishlist Page Redesign (v2) - Technical Grid
   ========================================================================== */

/* Page Section Background */
.v2-wishlist-section {
    background-color: #FAFAFA;
    padding: 60px 0 100px 0;
    min-height: 80vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Header Styling */
.v2-clean-wishlist-title {
    font-size: 32px;
    font-weight: 800;
    color: #000000;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}
.v2-clean-wishlist-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 15px;
    border-bottom: 2px solid #000000;
    margin-bottom: 30px;
}
.v2-clean-wishlist-count-badge {
    
    font-size: 13px;
    color: #4B5563;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Gapless Grid Layout */
.v2-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #E5E7EB;
    border-left: 1px solid #E5E7EB;
    background-color: #FFFFFF;
    margin-top: 10px;
}

/* Wishlist Item Card */
.v2-wishlist-card {
    background-color: #FFFFFF;
    border-right: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.2s ease;
}
.v2-wishlist-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

/* Square Image Wrapper */
.v2-wishlist-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #EDEDED;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 16px;
    border-radius: 0px;
}
.v2-wishlist-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.2s ease;
}
.v2-wishlist-card:hover .v2-wishlist-image-wrapper img {
    transform: scale(1.05);
}

/* Metadata flex row */
.v2-wishlist-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 4px;
    gap: 10px;
}
.v2-wishlist-item-title {
    font-size: 14px;
    font-weight: 800;
    color: #000000 !important;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    margin: 0;
    text-decoration: none !important;
    line-height: 1.3;
}
.v2-wishlist-item-price {
    
    font-size: 13px;
    font-weight: bold;
    color: #000000;
    white-space: nowrap;
}
.v2-wishlist-item-options {
    font-size: 11px;
    color: #6B7280;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Buttons */
.v2-wishlist-add-to-cart-btn {
    height: 40px;
    background-color: #000000;
    color: #FFFFFF !important;
    border: none;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    cursor: pointer;
    transition: background-color 0.1s ease;
    width: 100%;
    margin-bottom: 12px;
}
.v2-wishlist-add-to-cart-btn:hover {
    background-color: #262626;
}

.v2-wishlist-remove-link {
    font-size: 10px;
    font-weight: bold;
    color: #4B5563 !important;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    border-bottom: 1px solid #9CA3AF;
    padding-bottom: 1px;
    transition: color 0.1s ease, border-color 0.1s ease;
    margin: 0 auto;
}
.v2-wishlist-remove-link:hover {
    color: #000000 !important;
    border-color: #000000;
}




/* ==========================================================================
  08-06-2026
   ========================================================================== */
.v2-cart-saved-alert.mb-25 {
    display: none;
}
.v2-cart-section {
    background-color: var(--bg-light);
    padding: 60px 0 100px 0;
    min-height: 80vh;
    font-family: var(--font-sans);
}

/* Cart Header Styling */
.v2-clean-cart-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-navy);
    margin: 0;
}

.v2-clean-cart-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center; 
}

.v2-clean-cart-count-badge {
    font-size: 14px;
    color: var(--brand-blue);
    font-weight: 700;
    background-color: var(--brand-blue-light);
    padding: 6px 12px;
    border-radius: 20px;
}

/* Alert Message Line */
.v2-cart-saved-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--success);
    background-color: rgba(16, 185, 129, 0.1);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

/* List Row Elements */
.v2-clean-cart-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.v2-clean-cart-row {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.v2-clean-cart-row:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: rgba(75, 147, 208, 0.2);
}

/* Thumbnail images */
.v2-clean-cart-image {
    width: 100px;
    height: 100px;
    background-color: var(--bg-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.v2-clean-cart-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: var(--transition-normal);
}

.v2-clean-cart-row:hover .v2-clean-cart-image img {
    transform: scale(1.05);
}

/* Product Info Cell */
.v2-clean-cart-info {
    min-height: 100px;
}

.v2-clean-cart-product-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 6px 0;
}

.v2-clean-cart-product-title a {
    color: var(--dark-navy);
    text-decoration: none;
    transition: var(--transition-fast);
}

.v2-clean-cart-product-title a:hover {
    color: var(--brand-blue);
}

.v2-clean-cart-options {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 12px;
}

/* Quantity Box Buttons */
.v2-clean-qty-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    height: 38px;
    background-color: var(--bg-white);
    overflow: hidden;
    width: fit-content;
}

.v2-clean-qty-box .qty-btn {
    width: 32px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-main);
    text-decoration: none;
    background-color: var(--bg-light);
    transition: var(--transition-fast);
}

.v2-clean-qty-box .qty-btn:hover {
    background-color: var(--brand-blue);
    color: var(--bg-white);
}

.v2-clean-qty-box input.qty-val {
    width: 40px;
    height: 100%;
    border: none;
    outline: none;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--dark-navy);
    background: transparent;
    padding: 0;
}

/* Price & Remove Display on the Right */
.v2-clean-cart-right-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    min-height: 100px;
}

.v2-clean-cart-subtotal-text {
    font-size: 18px;
    color: var(--dark-navy);
    font-weight: 800;
}

.v2-clean-cart-remove-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--danger);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: rgba(239, 68, 68, 0.05);
    transition: var(--transition-fast);
}

.v2-clean-cart-remove-link:hover {
    background-color: var(--danger);
    color: var(--bg-white);
}

/* Summary Box Container */
.v2-clean-summary-container {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 20px;
}

.v2-clean-summary-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.v2-clean-summary-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--brand-blue);
    border-radius: 2px;
}

.v2-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: var(--text-main);
    margin-bottom: 16px;
}

.v2-summary-row-label {
    color: var(--text-muted);
    font-weight: 600;
}

.v2-summary-row-val {
    font-weight: 700;
    color: var(--dark-navy);
}

.v2-summary-row-val.shipping-subtext {
    font-size: 12px;
    color: var(--brand-blue);
}

.v2-summary-divider {
    border-top: 1px dashed var(--border-color);
    margin: 20px 0;
}

/* Total block */
.v2-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.v2-total-label {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-navy);
}

.v2-total-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--brand-blue);
}

/* Secure Checkout button */
.v2-secure-checkout-btn {
    background-color: var(--success);
    color: var(--bg-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 20px;
    text-decoration: none;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.2);
}

.v2-secure-checkout-btn:hover {
    background-color: #059669;
    transform: translateY(-2px);
    color: var(--bg-white);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .v2-clean-cart-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .v2-clean-cart-right-panel {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        min-height: auto;
        border-top: 1px solid var(--border-light);
        padding-top: 15px;
    }
}

































/* Responsiveness for CSS Grid */
@media (max-width: 991px) {
    .v2-wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .v2-wishlist-grid {
        grid-template-columns: 1fr;
    }
}




































