/*
Theme Name: PAINT VIEWS
Theme URI: https://paintviews.com/
Author: Antigravity
Author URI: https://antigravity-ai.com/
Description: Premium, Modern, Fully Responsive WooCommerce Paint Art Gallery Theme matching mockup design.
Version: 1.1.0
Text Domain: paint-views
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
1.0 Import Fonts & Variables
2.0 Global Styles & Typography
3.0 Header & Navigation
4.0 Hero Section & Carousels
5.0 Category Cards (Shop By Style)
6.0 Product Cards (Featured Artworks)
7.0 Promo Banners (Three Columns)
8.0 Artist Cards & Features Ribbon
9.0 Space Inspiration Grid
10.0 Testimonials & Blog Layouts
11.0 Newsletter Sign-up Stripe
12.0 Footer & Scroll-To-Top
--------------------------------------------------------------*/

/* 1.0 Import Fonts & Variables */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --primary: #c59d5f; /* Mockup Gold/Ochre */
    --primary-hover: #b5894b;
    --accent: #b5894b;
    --dark: #111111; /* Charcoal Black */
    --light-bg: #fdfdfd;
    --white: #ffffff;
    --grey-100: #f5f5f5;
    --grey-200: #e5e5e5;
    --grey-400: #a3a3a3;
    --grey-600: #525252;
    --grey-800: #262626;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.08);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --transition: all 0.3s ease;
}

/* 2.0 Global Styles & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--grey-800);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gold {
    color: var(--primary);
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
}
.section-title h2 {
    font-size: 32px;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}
.section-title h2::before,
.section-title h2::after {
    content: '';
    display: inline-block;
    width: 60px;
    height: 1px;
    background: var(--primary);
    vertical-align: middle;
}
.section-title p {
    font-size: 14px;
    color: var(--grey-600);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--primary-hover);
}
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 3.0 Header & Navigation */
.top-bar {
    background-color: var(--dark);
    color: var(--grey-400);
    font-size: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-info {
    display: flex;
    gap: 20px;
    align-items: center;
}
.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.top-bar-social {
    display: flex;
    gap: 15px;
    align-items: center;
}
.top-bar-social a {
    color: var(--grey-400);
}
.top-bar-social a:hover {
    color: var(--white);
}

.main-header {
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    flex-direction: column;
}
.logo h1 {
    font-size: 28px;
    letter-spacing: -0.5px;
    color: var(--dark);
    font-weight: 800;
    line-height: 1;
}
.logo h1 span {
    color: var(--primary);
}
.logo-tagline {
    font-size: 11px;
    color: var(--grey-600);
    margin-top: 2px;
}

.header-search {
    flex: 0 1 500px;
}
.header-search form {
    display: flex;
    border: 1px solid var(--grey-200);
    border-radius: 4px;
    overflow: hidden;
    background: var(--white);
}
.header-search input {
    width: 100%;
    padding: 10px 15px;
    border: none;
    font-size: 13px;
}
.header-search button {
    background: transparent;
    color: var(--grey-600);
    padding: 0 15px;
    border: none;
    cursor: pointer;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}
.header-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
}
.header-action-item i {
    font-size: 20px;
    color: var(--grey-800);
}
.header-action-item span.action-label {
    font-size: 11px;
    color: var(--grey-600);
    margin-top: 4px;
}
.header-action-item .badge-count {
    position: absolute;
    top: -6px;
    right: 2px;
    background: var(--primary);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-bar {
    background: var(--white);
    border-top: 1px solid var(--grey-200);
}
.nav-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-menu {
    display: flex;
    align-items: center;
}
.nav-menu > li > a {
    display: block;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.5px;
}
.nav-menu > li > a:hover {
    color: var(--primary);
}

.book-consult-btn {
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
}
.book-consult-btn:hover {
    background: var(--primary-hover);
}

/* 4.0 Hero Section */
.hero-section {
    position: relative;
    background: #000;
    color: var(--white);
    height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: 1;
}
.hero-section .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.hero-content h1 {
    font-size: 48px;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-content h1 span {
    color: var(--primary);
}
.hero-content p {
    font-size: 15px;
    color: var(--grey-200);
    margin-bottom: 30px;
    max-width: 500px;
}
.hero-btns {
    display: flex;
    gap: 15px;
}
.hero-badge-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    color: var(--dark);
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.hero-badge-overlay i {
    color: var(--primary);
    font-size: 24px;
}
.hero-badge-overlay span {
    font-size: 11px;
    font-weight: 700;
}

/* Carousel controls */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    z-index: 5;
}
.hero-arrow-left { left: 20px; }
.hero-arrow-right { right: 20px; }
.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
}
.hero-dot.active {
    background: var(--primary);
}

/* 5.0 Category Cards */
.category-section {
    padding: 60px 0;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
}
.category-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--grey-100);
}
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.category-img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    margin: 0 auto 12px;
    overflow: hidden;
}
.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category-card h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.category-card span {
    font-size: 11px;
    color: var(--grey-600);
}

/* 6.0 Product Cards */
.products-section {
    padding: 60px 0;
}
.products-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--grey-100);
    position: relative;
    display: flex;
    flex-direction: column;
}
.product-img-wrapper {
    height: 250px;
    background-color: var(--grey-100);
    overflow: hidden;
    position: relative;
}
.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-badge-mock {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 3px;
    color: var(--white);
}
.product-badge-mock.discount {
    background: #ef4444;
}
.product-badge-mock.hot {
    background: var(--primary);
}
.product-wishlist-mock {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--white);
    color: var(--grey-600);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.product-details {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}
.product-artist {
    font-size: 11px;
    color: var(--grey-600);
    margin-bottom: 6px;
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    color: #FBBF24;
    margin-bottom: 12px;
}
.product-rating span {
    color: var(--grey-400);
}

.product-footer-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.price-container {
    display: flex;
    flex-direction: column;
}
.product-price {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
}
.product-price del {
    font-size: 11px;
    color: var(--grey-400);
    font-weight: 400;
}

.cart-icon-btn {
    background: var(--primary);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border: none;
    cursor: pointer;
}
.cart-icon-btn:hover {
    background: var(--primary-hover);
}

/* 7.0 Promo Banners */
.promo-banners-section {
    padding: 40px 0;
}
.promo-banners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.promo-card {
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    color: var(--white);
}
.promo-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.promo-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2;
}
.promo-card-content {
    position: relative;
    z-index: 3;
}
.promo-card h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 5px;
}
.promo-card p {
    font-size: 12px;
    color: var(--grey-200);
    margin-bottom: 15px;
    max-width: 250px;
}
.promo-card .btn-white-rounded {
    background: var(--white);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
}

/* 8.0 Artist Cards & Features Ribbon */
.artists-section {
    padding: 60px 0;
}
.artists-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
}
.artist-card {
    text-align: center;
}
.artist-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 12px;
    overflow: hidden;
    border: 2px solid var(--grey-200);
}
.artist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.artist-card h3 {
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 2px;
}
.artist-card p {
    font-size: 11px;
    color: var(--grey-600);
}
.artist-card span {
    font-size: 11px;
    color: var(--primary);
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
}
.artist-card .stars {
    font-size: 11px;
    color: #FBBF24;
}

.features-ribbon {
    background: var(--white);
    border-top: 1px solid var(--grey-200);
    border-bottom: 1px solid var(--grey-200);
    padding: 30px 0;
}
.features-ribbon-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.ribbon-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ribbon-item i {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 10px;
}
.ribbon-item h4 {
    font-size: 13px;
    margin-bottom: 4px;
}
.ribbon-item p {
    font-size: 10px;
    color: var(--grey-600);
}

/* 9.0 Space Inspiration Grid */
.inspiration-section {
    padding: 60px 0;
}
.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}
.space-card {
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: var(--white);
    text-align: center;
}
.space-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.space-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
}
.space-card-content {
    position: relative;
    z-index: 3;
}
.space-card h3 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 4px;
}
.space-card span {
    font-size: 11px;
    color: var(--primary);
    text-decoration: underline;
    font-weight: 700;
}

/* 10.0 Testimonials & Blog Layouts */
.testimonials-section {
    padding: 60px 0;
}
.testimonials-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}
.testimonials-cols-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testimonial-card-mock {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--grey-100);
    display: flex;
    flex-direction: column;
}
.testimonial-quote {
    font-size: 12px;
    color: var(--grey-600);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.5;
}
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}
.testimonial-user-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}
.testimonial-user-info h4 {
    font-size: 12px;
    margin-bottom: 2px;
}
.testimonial-user-info p {
    font-size: 10px;
    color: var(--grey-600);
}
.testimonial-card-mock .stars {
    color: #FBBF24;
    font-size: 10px;
    margin-top: 10px;
}

.gallery-side-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
}
.gallery-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-section {
    padding: 60px 0;
}
.blog-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.blog-card-mock {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--grey-100);
}
.blog-img-wrapper {
    height: 180px;
    overflow: hidden;
}
.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-details {
    padding: 20px;
}
.blog-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-date {
    font-size: 11px;
    color: var(--grey-400);
}

/* 11.0 Newsletter Stripe */
.newsletter-stripe {
    background: var(--primary);
    padding: 40px 0;
    color: var(--white);
}
.newsletter-stripe-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.newsletter-stripe-text h2 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 4px;
}
.newsletter-stripe-text p {
    font-size: 13px;
    color: var(--grey-100);
}
.newsletter-stripe-form {
    display: flex;
    gap: 10px;
    flex: 0 1 500px;
}
.newsletter-stripe-form input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 4px;
    border: none;
    font-size: 13px;
}
.newsletter-stripe-form button {
    background: var(--dark);
    color: var(--white);
    padding: 0 30px;
    border-radius: 4px;
    border: none;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
}

/* 12.0 Footer */
.main-footer {
    background-color: var(--dark);
    color: var(--grey-400);
    padding: 60px 0 20px;
    font-size: 13px;
}
.footer-grid-5 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 1.4fr;
    gap: 30px;
    margin-bottom: 40px;
}
.footer-logo h2 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 15px;
}
.footer-logo h2 span {
    color: var(--primary);
}
.footer-logo p {
    margin-bottom: 20px;
    line-height: 1.6;
}
.footer-social-icons {
    display: flex;
    gap: 15px;
}
.footer-social-icons a {
    color: var(--grey-400);
    font-size: 16px;
}
.footer-social-icons a:hover {
    color: var(--white);
}

.footer-col h3 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: var(--grey-400);
}
.footer-links a:hover {
    color: var(--white);
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}
.footer-contact-info i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.scroll-top-btn {
    background: var(--primary);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.scroll-top-btn:hover {
    background: var(--primary-hover);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .category-grid { grid-template-columns: repeat(4, 1fr); }
    .products-grid-5 { grid-template-columns: repeat(3, 1fr); }
    .promo-banners-grid { grid-template-columns: 1fr; }
    .artists-grid { grid-template-columns: repeat(3, 1fr); }
    .inspiration-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials-row { grid-template-columns: 1fr; }
    .blog-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid-5 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .header-search { display: none; }
    .hero-section { height: auto; padding: 60px 0; }
    .hero-section .container { grid-template-columns: 1fr; }
    .hero-badge-overlay { display: none; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid-5 { grid-template-columns: repeat(2, 1fr); }
    .artists-grid { grid-template-columns: repeat(2, 1fr); }
    .features-ribbon-grid { grid-template-columns: repeat(3, 1fr); }
    .inspiration-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid-4 { grid-template-columns: 1fr; }
    .footer-grid-5 { grid-template-columns: 1fr; }
}

/* 13.0 Cart Drawer & Modals Overlay */
.cart-drawer-overlay,
.quickview-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}
.cart-drawer-overlay.active {
    display: block;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: var(--white);
    z-index: 1001;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.cart-drawer-overlay.active .cart-drawer {
    right: 0;
}

.cart-drawer-header {
    padding: 20px;
    border-bottom: 1px solid var(--grey-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-drawer-close {
    cursor: pointer;
    font-size: 20px;
}
.cart-drawer-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}
.cart-drawer-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--grey-100);
    padding-bottom: 15px;
}
.cart-drawer-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}
.cart-item-info h4 {
    font-size: 13px;
    margin-bottom: 4px;
}
.cart-item-info .qty-price {
    font-size: 12px;
    color: var(--grey-600);
}
.cart-item-info .price {
    color: var(--primary);
    font-weight: 700;
}
.cart-drawer-footer {
    padding: 20px;
    border-top: 1px solid var(--grey-200);
    background: var(--grey-100);
}
.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
}

.quickview-modal {
    background: var(--white);
    border-radius: var(--radius-md);
    max-width: 800px;
    width: 100%;
    padding: 30px;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: fadeIn 0.3s ease;
}
.quickview-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 18px;
    cursor: pointer;
    color: var(--grey-400);
}
#wishlist-modal-content,
#compare-modal-content {
    margin-top: 15px;
}

/* 14.0 WooCommerce Shop Catalog Overrides */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}
@media (max-width: 1024px) {
    .woocommerce ul.products { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .woocommerce ul.products { grid-template-columns: 1fr; }
}

.woocommerce ul.products li.product {
    background: var(--white) !important;
    border-radius: var(--radius-md) !important;
    padding: 20px !important;
    box-shadow: var(--shadow-sm) !important;
    border: 1px solid var(--grey-100) !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    transition: var(--transition) !important;
    margin: 0 !important;
    width: 100% !important;
}
.woocommerce ul.products li.product:hover {
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-md) !important;
}

/* Product image styling */
.woocommerce ul.products li.product a img {
    border-radius: 6px !important;
    margin-bottom: 12px !important;
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    transition: var(--transition) !important;
}
.woocommerce ul.products li.product a img:hover {
    opacity: 0.95;
}

/* Title styling */
.woocommerce-loop-product__title {
    font-family: var(--font-heading) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--dark) !important;
    margin: 8px 0 4px !important;
    line-height: 1.3 !important;
}

/* Price styling */
.woocommerce ul.products li.product .price {
    color: var(--dark) !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
    display: block !important;
    margin-top: auto !important;
}
.woocommerce ul.products li.product .price del {
    color: var(--grey-400) !important;
    font-weight: 400 !important;
    font-size: 12px !important;
    margin-right: 6px !important;
    display: inline-block !important;
}
.woocommerce ul.products li.product .price ins {
    background: transparent !important;
    text-decoration: none !important;
    color: var(--dark) !important;
    font-weight: 800 !important;
}

/* Rating stars styling */
.woocommerce ul.products li.product .star-rating,
.woocommerce .star-rating {
    font-size: 12px !important;
    color: #FBBF24 !important;
    margin: 8px 0 12px !important;
}
.woocommerce .star-rating::before {
    color: var(--grey-200) !important;
    content: '\53\53\53\53\53' !important;
}

/* Add to cart button styling */
.woocommerce ul.products li.product .button {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    background-color: var(--primary) !important;
    color: var(--white) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 11px 0 !important;
    border-radius: 4px !important;
    border: none !important;
    transition: var(--transition) !important;
    margin-top: auto !important;
    line-height: 1 !important;
}
.woocommerce ul.products li.product .button:hover {
    background-color: var(--primary-hover) !important;
    color: var(--white) !important;
}

/* Premium red sale tag */
.woocommerce span.onsale {
    background-color: #ef4444 !important;
    color: var(--white) !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    padding: 3px 8px !important;
    border-radius: 3px !important;
    min-height: auto !important;
    min-width: auto !important;
    line-height: 1.2 !important;
    top: 15px !important;
    right: 15px !important;
    left: auto !important;
    font-family: var(--font-body) !important;
}

/* 15.0 WhatsApp Integration */

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
    color: #fff;
}
.whatsapp-float::before {
    content: 'Chat with us';
    position: absolute;
    right: 70px;
    background: #25D366;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: var(--font-body);
}
.whatsapp-float:hover::before {
    opacity: 1;
}

/* Product Card WhatsApp Button */
.product-action-btns {
    display: flex;
    gap: 6px;
    align-items: center;
}
.cart-icon-btn.wa-btn {
    background: #25D366 !important;
    color: #fff !important;
}
.cart-icon-btn.wa-btn:hover {
    background: #1da851 !important;
    transform: scale(1.1);
}

/* WooCommerce Single Product WhatsApp Button */
.wc-whatsapp-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 12px;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}
.wc-whatsapp-order-btn:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.wc-whatsapp-order-btn i {
    font-size: 20px;
}

/* WooCommerce Add to Cart + WhatsApp row */
.woocommerce div.product form.cart {
    margin-bottom: 10px !important;
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .whatsapp-float::before {
        display: none;
    }
}
