/*
Theme Name: U and World
Theme URI: https://example.com/u-and-world
Author: Your Name
Author URI: https://example.com
Description: A modern WordPress theme for U and World
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: u-and-world
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* Reset & Base Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --background: #ffffff;
    --background-alt: #f9fafb;
    --border-color: #e5e7eb;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    --container-width: 1400px;
    --spacing-unit: 1rem;
    --border-radius: 0.5rem;
    --transition: all 0.3s ease;
}

@font-face {
  font-family: 'Manrope';
  src: url('assets/fonts/Manrope-Bold.ttf') format('ttf'),
       url('assets/fonts/Manrope-Bold.ttf') format('ttf');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bebas Neue';
  src: url('assets/fonts/BebasNeue-Bold.ttf') format('ttf'),
       url('assets/fonts/BebasNeue-Bold.ttf') format('ttf');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}



/* Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'manrope';
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1.5rem;
}

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

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
button {font-family:'manrope';}

/* Layout */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Header */
.site-header {
    background-color: var(--background);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.header-main {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.site-branding {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo {
    max-height: 50px;
    width: auto;
}

/* Search Bar */
.header-search {
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
}

.search-form {
    position: relative;
    width: 100%;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 25px;
    padding: 0.2rem 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    min-height: 48px;
}

.search-input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-icon {
    width: 16px;
    height: 16px;
    margin-right: 12px;
    opacity: 0.7;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-field {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    padding: 0;
    color: var(--text-color);
    height: 20px;
    display: flex;
    align-items: center;
}

.search-field::placeholder {
    color: #9ca3af;
    font-size: 14px;
}

/* Account Links */
.header-account {
    flex-shrink: 0;
}

.account-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.account-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.account-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.cart-link {
    position: relative;
}

.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-icon {
    width: 24px;
    height: 24px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--error);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.link-text {
    font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

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

.mobile-menu-content {
    padding: 1.5rem;
}

.mobile-menu-search {
    margin-bottom: 1.5rem;
}

.mobile-account-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-account-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s ease;
}

.mobile-account-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.mobile-cart-count-inline {
    color: var(--error);
    font-weight: 600;
}

/* Content */
.site-content {
    min-height: 60vh;
}

/* Footer */
.site-footer {
    background-color: var(--background-alt);
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-widget {
    margin-bottom: 1.5rem;
}

.footer-widget-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--text-color);
}

.site-info {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Buttons */

button.mobile-menu-toggle .hamburger-line {
	color: #2172DD;
	
}
.button,

input[type="button"],
input[type="reset"],
input[type="submit"] {
    display: inline-block;
    background: linear-gradient(135deg, #0DCFF2 0%, #2172DD 100%) !important;
    color: white !important;
    border: none;
    border-radius: 5px;
    padding: 15px 25px !important;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.button:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}
.header-content { padding-left: 0px !important; padding-right: 0px !important;}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-search {
        max-width: 400px;
        margin: 0 1rem;
    }
    
    .account-links {
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 38px;
        height: 38px;
    }
    
    .products-carousel {
        padding: 0 48px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-content {
        gap: 1rem;
		padding: 20px 30px !important;
    }
    
    .header-search.desktop-tablet-search {
        display: none;
    }
    
    .header-account.desktop-account {
        display: none;
    }
    
    .site-branding {
        flex: 1;
    }
    
    .header-main {
        padding: 0.75rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        gap: 0.5rem;
    }
    
    .site-logo {
        max-height: 40px;
    }
    
    .mobile-menu-content {
        padding: 1rem;
    }
    
    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 0.8rem;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: white;
        border: 2px solid #4D89C7;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        opacity: 1;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        min-width: 44px;
        min-height: 44px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .arrow-fallback {
        font-size: 1.2rem;
    }
    
    .products-carousel {
        padding: 0 55px;
        position: relative;
    }
    
    .products-section {
        position: relative;
    }
    
    .carousel-btn:hover {
        background: #4D89C7;
        transform: translateY(-50%) scale(1.05);
    }
    
    .carousel-btn:hover .arrow-icon {
        filter: brightness(0) invert(1);
    }
    
    .carousel-btn:active {
        transform: translateY(-50%) scale(0.95);
        background: #3B82F6;
    }
    
    .carousel-btn:focus {
        outline: 2px solid #4D89C7;
        outline-offset: 2px;
    }
    
    .product-card {
        flex: 0 0 220px;
        max-width: 220px;
        margin-right: 0.75rem;
        height: 200px;
        display: flex;
        flex-direction: column;
    }
    
    .products-grid {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }
}

/* WordPress Specific */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin: 0 auto;
}

.wp-caption-text {
    text-align: center;
    font-size: 0.875em;
    color: var(--text-light);
    margin-top: 0.5em;
}

.sticky {
    display: block;
}

.bypostauthor {
    display: block;
}

/* Accessibility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Hero Section */
.hero-section {
    background: url('../images/landing-page/hero-bg.png') center center/cover no-repeat,
                linear-gradient(135deg, #00D4AA 0%, #4A90E2 100%);
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 2px;
    z-index: 1;
}

.hero-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 60vh;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #0DCFF2 0%, #2172DD 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(13, 207, 242, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0BB8E6 0%, #1A5BC7 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 207, 242, 0.4);
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.watch-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Pagination slider - commented out for future implementation */
/*
.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.indicator.active {
    background-color: white;
    transform: scale(1.2);
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}
*/

/* Featured Products Section */
.featured-products {
    padding: 4rem 0;
    background-color: var(--background);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #4D89C7;
    margin: 0 0 0.5rem 0;
}

.section-title p {
    font-size: 1rem;
    color: #262424;
    font-style: italic;
    margin: 0;
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.view-all-text {
    color: #000000;
    font-size: 1rem;
}

.view-all-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.view-all-link:hover {
    text-decoration: none;
}

.view-all-link:hover .view-all-icon {
    transform: translateX(2px);
}

.products-section {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.products-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 0 50px;
}

.carousel-btn {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: white;
    border: 2px solid #4D89C7;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.carousel-btn:hover {
    background: #4D89C7;
    transform: translateY(-50%) scale(1.05);
}

.arrow-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
    display: block;
}

.carousel-btn:hover .arrow-icon {
    filter: brightness(0) invert(1);
}

.carousel-btn:hover .arrow-fallback {
    color: white;
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
    background: #3B82F6;
}

.carousel-btn:focus {
    outline: 2px solid #4D89C7;
    outline-offset: 2px;
}

.arrow-fallback {
    font-size: 1.5rem;
    font-weight: bold;
    color: #64748b;
    line-height: 1;
}

/* Fallback for missing arrow images */
.arrow-fallback {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4D89C7;
    line-height: 1;
    display: none;
}

.carousel-btn:hover .arrow-fallback {
    color: white;
}

.products-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-height: 450px;
    background: #f8fafc;
}

.products-grid {
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
    padding: 0 1rem;
    min-height: 400px;
    align-items: center;
}

.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    overflow: hidden;
    flex: 0 0 300px;
    height: 450px;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: #f8fafc;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    justify-content: space-between;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.product-name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    color: #262424;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6rem;
}

.product-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: #4D89C7;
    text-decoration: none;
}

.product-category {
    font-size: 0.875rem;
    color: #8D8D8D;
    font-style: italic;
    margin: 0;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.star-rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #e2e8f0;
    font-size: 0.875rem;
}

.star.filled {
    color: #fbbf24;
}

.rating-count {
    font-size: 0.75rem;
    color: #64748b;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #4D89C7;
    margin: 0;
    min-height: 1.5rem;
    display: flex;
    align-items: center;
}

.product-actions {
    margin-top: 1rem;
}

.read-more-btn {
    width: 100%;
    background: transparent;
    color: #4D89C7;
    border: 2px solid #4D89C7;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
}

.read-more-btn:hover {
    background: #4D89C7;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.add-to-cart-btn {
    width: 100%;
    background: #4D89C7;
    color: white;
    border: 2px solid #4D89C7;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
}

.add-to-cart-btn:hover {
    background: #3a7bc7;
    border-color: #3a7bc7;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(77, 137, 199, 0.3);
}

/* Hero Section Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .watch-image {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 90vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        justify-items: center;
    }
    
    .hero-text {
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .watch-image {
        max-height: 300px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .products-section {
        position: relative;
        flex-direction: column;
        gap: 1rem;
    }
    
    
    .products-grid {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }
    
    .products-grid::-webkit-scrollbar {
        height: 4px;
    }
    
    .products-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }
    
    .products-grid::-webkit-scrollbar-thumb {
        background: #4D89C7;
        border-radius: 2px;
    }
    
    .product-card {
        flex: 0 0 250px;
        max-width: 250px;
        margin-right: 1rem;
        height: 400px;
        display: flex;
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .hero-text {
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.75rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 200px;
        text-align: center;
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .watch-image {
        display: none;
    }
}

/* Comments */
.comments-area {
    margin-top: 3rem;
}

.comment-list {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.comment-body {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.comment-meta {
    margin-bottom: 1rem;
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-author .avatar {
    border-radius: 50%;
    margin-right: 1rem;
}

.comment-metadata {
    font-size: 0.875rem;
    color: var(--text-light);
}

.comment-content {
    margin: 1rem 0;
}

.comment-reply-link {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   SHOP PAGE STYLES
   ======================================== */

/* Shop Main Container */
.shop-main {
    padding: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
}

/* Breadcrumbs */
.breadcrumbs {
    background: linear-gradient(135deg, #00D4AA 0%, #4A90E2 100%);
    margin-bottom: 0;
    padding: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.breadcrumbs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/landing-page/hero-bg.png') center center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0 2rem;
    font-size: 0.875rem;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.breadcrumb-link:hover {
    color: white;
    text-decoration: none;
}

.breadcrumb-separator {
    margin: 0 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.breadcrumb-item.active {
    color: white;
    font-weight: 600;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #4D89C7;
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00D4AA, #4A90E2);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.section-subtitle {
    font-size: 1.25rem;
    color: #262424;
    margin: 0;
    font-style: italic;
    font-weight: 400;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.bestsellers-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.top-rated-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 16px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(74, 144, 226, 0.3);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) saturate(1.1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
    filter: brightness(1.05) saturate(1.2);
}

.sale-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.product-info {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
}

.product-name {
    margin-bottom: 1rem;
}

.product-name a {
    color: #1e293b;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    transition: all 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-name a:hover {
    color: #4A90E2;
    text-decoration: none;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.star-rating {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #e2e8f0;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.star.filled {
    color: #fbbf24;
    text-shadow: 0 1px 2px rgba(251, 191, 36, 0.3);
}

.rating-count {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.product-price {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-price del {
    color: #94a3b8;
    font-weight: 500;
    font-size: 1.125rem;
}

.product-price ins {
    text-decoration: none;
    color: #ef4444;
    font-weight: 800;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.add-to-cart-btn,
.read-more-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    border: 2px solid transparent;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #357ABD 0%, #2563eb 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
    text-decoration: none;
}

.read-more-btn {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #4A90E2;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    border-color: #4A90E2;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
    text-decoration: none;
}

/* Categories Section */
.categories-section {
    margin-top: 6rem;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.8) 100%);
    backdrop-filter: blur(10px);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(0, 212, 170, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    border-color: #4A90E2;
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.15);
    transform: translateY(-4px);
}

.category-link {
    display: block;
    padding: 3rem 2rem;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.category-link:hover {
    color: #4A90E2;
    text-decoration: none;
}

.category-info {
    text-align: center;
}

.category-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    text-shadow: none;
}

.category-count {
    font-size: 1rem;
    color: #64748b;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* No Products Message */
.no-products-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
}

.no-products-message p {
    font-size: 1.125rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .bestsellers-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .categories-grid {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .shop-main {
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
    
    .breadcrumbs {
        padding: 1rem 0;
    }
    
    .breadcrumb-list {
        padding: 0 1rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .bestsellers-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .product-name a {
        font-size: 1.125rem;
    }
    
    .product-price {
        font-size: 1.25rem;
    }
    
    .add-to-cart-btn,
    .read-more-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .category-link {
        padding: 2rem 1.5rem;
    }
    
    .category-name {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 0.75rem;
    }
    
    .bestsellers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .top-rated-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .category-link {
        padding: 1.5rem 1rem;
    }
    
    .category-name {
        font-size: 1.125rem;
    }
    
    .product-info {
        padding: 1.25rem;
    }
    
    .add-to-cart-btn,
    .read-more-btn {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }
}

/* Section Backgrounds */
.bestsellers-section {
    margin-top: 4rem;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(10px);
    position: relative;
}

.bestsellers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/landing-page/hero-bg.png') center center/cover no-repeat;
    opacity: 0.02;
    z-index: 1;
}

.bestsellers-section .section-header,
.bestsellers-section .products-grid {
    position: relative;
    z-index: 2;
}

.top-rated-section {
    margin-top: 0;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(248, 250, 252, 0.7) 100%);
    backdrop-filter: blur(10px);
    position: relative;
}

/* ========================================
   PRODUCT DETAILS PAGE STYLES
   ======================================== */

/* Product Main Container */
.product-main {
    padding: 0;
    background: #fff;
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;

}

/* Product Details Container */
	.product-details-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding	: 0px;
    max-width: 1440px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0);
    margin-top: 5rem;
    margin-bottom: 3rem;
}

/* Product Gallery */
.product-gallery {
    position: relative;
}

.product-image-main {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.zoom-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #4A90E2;
}

.zoom-button:hover {
    background: #4A90E2;
    color: white;
    transform: scale(1.1);
}

/* Product Summary */
.product-summary {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-header {
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 1.5rem;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-price {
    font-size: 2rem;
    font-weight: 800;
    color: #4A90E2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-price del {
    color: #94a3b8;
    font-weight: 500;
    font-size: 1.25rem;
}

.product-price ins {
    text-decoration: none;
    color: #ef4444;
    font-weight: 800;
}

.product-description {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #4A90E2;
}

.product-short-desc {
    font-size: 1.125rem;
    color: #475569;
    margin: 0;
    line-height: 1.6;
    font-style: italic;
}

/* Product Actions */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quantity-cart-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quantity-label {
    font-weight: 600;
    color: #374151;
    font-size: 1rem;
}

.quantity input[type="number"] {
    width: 80px;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quantity input[type="number"]:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.single_add_to_cart_button {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    min-width: 150px;
}

.single_add_to_cart_button:hover {
    background: linear-gradient(135deg, #357ABD 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.paypal-button-wrapper {
    margin-top: 1rem;
}

.paypal-button {
    background: linear-gradient(135deg, #ffc439 0%, #ffb400 100%);
    color: #003087;
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 196, 57, 0.3);
}

.paypal-button:hover {
    background: linear-gradient(135deg, #ffb400 0%, #ff9500 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 196, 57, 0.4);
}


.stripe-button-wrapper {
    margin-top: 1rem;
}

.stripe-button {
    background: linear-gradient(135deg, #635bff 0%, #3b39d6 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(99, 91, 255, 0.3);
}

.stripe-button:hover {
    background: linear-gradient(135deg, #3b39d6 0%, #2d2bb2 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 91, 255, 0.4);
}

/* Product Meta */
.product-meta {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.product-sku,
.product-categories {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #475569;
}

.product-sku:last-child,
.product-categories:last-child {
    margin-bottom: 0;
}

.product-categories a {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.product-categories a:hover {
    color: #357ABD;
    text-decoration: underline;
}

/* Vendor Info */
.vendor-info {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.vendor-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vendor-icon {
    background: #4A90E2;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vendor-details {
    flex: 1;
}

.vendor-name {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.25rem;
}

.vendor-rating .star-rating {
    display: flex;
    gap: 0.125rem;
}

.vendor-rating .star {
    color: #e2e8f0;
    font-size: 0.875rem;
}

.vendor-rating .star.filled {
    color: #fbbf24;
}

/* Product Tabs */
	.product-tabs {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
	max-width: 1440px;
	margin: 0 auto;
    margin-bottom: 3rem;
}

.tabs-navigation {
    display: flex;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e2e8f0;
}

.tab-button {
    flex: 1;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-button:hover {
    color: #4A90E2;
    background: rgba(74, 144, 226, 0.05);
}

.tab-button.active {
    color: #4A90E2;
    background: white;
    border-bottom: 3px solid #4A90E2;
}

.tabs-content {
    padding: 3rem;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f5f9;
}

/* Reviews */
.no-reviews {
    color: #64748b;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.be-first-review {
    color: #4A90E2;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.review-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #4A90E2;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.125rem;
}

.review-rating .star {
    color: #e2e8f0;
    font-size: 1rem;
}

.review-rating .star.filled {
    color: #fbbf24;
}

.review-content {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.review-date {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Review Form */
.review-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.review-form h4 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.comment-form-rating,
.comment-form-comment {
    margin-bottom: 1.5rem;
}

.comment-form-rating label,
.comment-form-comment label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.comment-form-rating select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
}

.comment-form-comment textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    min-height: 120px;
    resize: vertical;
}

.comment-form-rating select:focus,
.comment-form-comment textarea:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-submit .submit {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit .submit:hover {
    background: linear-gradient(135deg, #357ABD 0%, #2563eb 100%);
    transform: translateY(-2px);
}

/* Enhanced Vendor Information */
.vendor-details-full {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.vendor-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.vendor-store-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.vendor-rating-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vendor-rating-info .star-rating {
    display: flex;
    gap: 0.25rem;
}

.vendor-rating-info .star {
    color: #e2e8f0;
    font-size: 1rem;
}

.vendor-rating-info .star.filled {
    color: #fbbf24;
}

.rating-text {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.vendor-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.vendor-info-item {
    background: white;
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.vendor-info-item strong {
    color: #374151;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.vendor-link {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.vendor-link:hover {
    color: #357ABD;
    text-decoration: underline;
}

.vendor-address {
    margin-top: 0.5rem;
    color: #475569;
    line-height: 1.5;
}

.vendor-description {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.vendor-description h5 {
    color: #1e293b;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.vendor-description p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* More Products Grid */
.more-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.more-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    max-width: 320px;
    margin: 0 auto;
}

.more-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.more-product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.more-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.more-product-card:hover .more-product-image img {
    transform: scale(1.05);
}

.more-product-info {
    padding: 1.25rem;
}

.more-product-title {
    margin-bottom: 0.75rem;
}

.more-product-title a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.more-product-title a:hover {
    color: #4A90E2;
}

.more-product-price {
    font-weight: 700;
    color: #4A90E2;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.more-product-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.view-product-btn {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #4A90E2;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    flex: 1;
    text-align: center;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-product-btn:hover {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.add-to-cart-btn-small {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    min-width: 100px;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart-btn-small:hover {
    background: linear-gradient(135deg, #357ABD 0%, #2563eb 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.out-of-stock-btn {
    background: #f1f5f9;
    color: #94a3b8;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    flex: 1;
    min-width: 100px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Related Products Section */
.related-products-section {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin-bottom: 3rem;
}

.related-products-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.related-products-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4D89C7;
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.related-products-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00D4AA, #4A90E2);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.related-products-section .section-subtitle {
    font-size: 1.25rem;
    color: #262424;
    margin: 0;
    font-style: italic;
    font-weight: 400;
}

/* Related Products */
.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.related-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    max-width: 320px;
    margin: 0 auto;
}

.related-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.05);
}

.related-product-info {
    padding: 1.25rem;
}

.related-product-title {
    margin-bottom: 0.75rem;
}

.related-product-title a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.related-product-title a:hover {
    color: #4A90E2;
}

.related-product-price {
    font-weight: 700;
    color: #4A90E2;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.related-product-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.related-product-actions .view-product-btn {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #4A90E2;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    flex: 1;
    text-align: center;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-product-actions .view-product-btn:hover {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.related-product-actions .add-to-cart-btn-small {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    min-width: 100px;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-product-actions .add-to-cart-btn-small:hover {
    background: linear-gradient(135deg, #357ABD 0%, #2563eb 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.related-product-actions .out-of-stock-btn {
    background: #f1f5f9;
    color: #94a3b8;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    flex: 1;
    min-width: 100px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design for Product Details */
@media (max-width: 1024px) {
    .product-details-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 1.5rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-price {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .product-details-container {
        padding: 1.5rem 1rem;
        margin: 1rem;
        border-radius: 15px;
    }
    
    .product-title {
        font-size: 1.75rem;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    .quantity-cart-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quantity-wrapper {
        justify-content: center;
    }
    
    .single_add_to_cart_button {
        width: 100%;
    }
    
    .tabs-navigation {
        flex-direction: column;
    }
    
    .tab-button {
        text-align: left;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .tabs-content {
        padding: 2rem 1.5rem;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-details-container {
        margin: 0.5rem;
        padding: 1rem;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-price {
        font-size: 1.25rem;
    }
    
    .tabs-content {
        padding: 1.5rem 1rem;
    }
    
    .related-products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vendor-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vendor-header-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .more-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .more-product-card {
        max-width: 280px;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .related-product-card {
        max-width: 280px;
    }
    
    .related-products-section {
        padding: 2rem 1rem;
    }
    
    .related-products-section .section-title {
        font-size: 2rem;
    }
    
    .more-product-actions,
    .related-product-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .view-product-btn,
    .add-to-cart-btn-small,
    .out-of-stock-btn {
        min-width: auto;
        width: 100%;
    }
}

/* Cart Success Notification */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    z-index: 9999;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 350px;
    backdrop-filter: blur(10px);
}

.cart-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.notification-text {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Button States */
.add-to-cart-btn-small.added-to-cart {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4) !important;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Loading state */
.add-to-cart-btn-small:disabled {
    opacity: 0.7;
    pointer-events: none;
    cursor: not-allowed;
}

/* Mobile notification */
@media (max-width: 768px) {
    .cart-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .cart-notification.show {
        transform: translateY(0);
    }
}

/* ========================================
   CATEGORY PAGE STYLES
   ======================================== */

/* Category Main Container */
.category-main {
    padding: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
}

/* Category Header */
.category-header {
    background: linear-gradient(135deg, #00D4AA 0%, #4A90E2 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-bg" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-bg)"/></svg>');
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    border-radius: 0 0 30px 30px;
    position: relative;
    overflow: hidden;
}

.category-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.9) 0%, rgba(74, 144, 226, 0.9) 100%);
    z-index: 1;
}

.category-info {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.category-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.category-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-style: italic;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.category-stats {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 2;
}

.product-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Category Controls */
.category-controls {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.sorting-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
}

.sorting-label {
    font-weight: 600;
    color: #374151;
    font-size: 1rem;
    white-space: nowrap;
}

.sorting-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    background: white;
    color: #374151;
    min-width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sorting-select:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* Category Products */
.category-products {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.sale-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    z-index: 2;
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    color: #4A90E2;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.product-name {
    margin-bottom: 0.75rem;
}

.product-name a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-name a:hover {
    color: #4A90E2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.star-rating {
    display: flex;
    gap: 0.125rem;
}

.star {
    color: #e2e8f0;
    font-size: 0.875rem;
}

.star.filled {
    color: #fbbf24;
}

.rating-count {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-price {
    font-weight: 700;
    color: #4A90E2;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.product-actions {
    margin-top: 1rem;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    width: 100%;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #357ABD 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
    color: white;
}

.out-of-stock-btn {
    background: #f1f5f9;
    color: #94a3b8;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
    border: 1px solid #e2e8f0;
    display: inline-block;
}

/* Pagination */
.category-pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.category-pagination .page-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.category-pagination .page-numbers a,
.category-pagination .page-numbers span {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 44px;
    text-align: center;
}

.category-pagination .page-numbers a {
    background: white;
    color: #4A90E2;
    border: 2px solid #e2e8f0;
}

.category-pagination .page-numbers a:hover {
    background: #4A90E2;
    color: white;
    border-color: #4A90E2;
}

.category-pagination .page-numbers .current {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    border: 2px solid #4A90E2;
}

/* No Products Message */
.no-products-message {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

.no-products-message h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.no-products-message p {
    color: #64748b;
    margin-bottom: 2rem;
}

.back-to-shop-btn {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.back-to-shop-btn:hover {
    background: linear-gradient(135deg, #357ABD 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
    color: white;
}

/* Responsive Design for Category Page */
@media (max-width: 1024px) {
    .category-title {
        font-size: 2.5rem;
    }
    
    .category-stats {
        position: static;
        margin-top: 1rem;
    }
    
    .category-controls {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .sorting-wrapper {
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .category-header {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .category-description {
        font-size: 1rem;
    }
    
    .category-controls {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .category-products {
        padding: 0 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .product-info {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .category-header {
        padding: 1.5rem 0.5rem;
    }
    
    .category-title {
        font-size: 1.75rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-controls {
        padding: 0.75rem;
    }
    
    .sorting-select {
        min-width: 150px;
    }
}

/* Affiliate Section Styles */
.affiliate-section {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
    background-image: url('../images/landing-page/affiliate-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.affiliate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 250, 251, 0.9) 100%);
    z-index: 1;
}

.affiliate-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.affiliate-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 400px;
}

.affiliate-text {
    padding: 2rem 0;
}

.affiliate-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.affiliate-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

.affiliate-benefits {
    list-style: none;
    margin-bottom: 2.5rem;
    padding: 0;
}

.affiliate-benefits li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.affiliate-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.1rem;
}

.affiliate-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0DCFF2 0%, #2172DD 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(13, 207, 242, 0.3);
    border: none;
    cursor: pointer;
}

.affiliate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 207, 242, 0.4);
    text-decoration: none;
    color: white;
}

.affiliate-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.affiliate-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.affiliate-img:hover {
    transform: scale(1.02);
}

/* Responsive Design for Affiliate Section */
@media (max-width: 1024px) {
    .affiliate-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .affiliate-title {
        font-size: 2.25rem;
    }
    
    .affiliate-description {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .affiliate-section {
        padding: 3rem 0;
        margin: 2rem 0;
    }
    
    .affiliate-container {
        padding: 0 1rem;
    }
    
    .affiliate-content {
        gap: 1.5rem;
    }
    
    .affiliate-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .affiliate-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .affiliate-benefits {
        margin-bottom: 2rem;
    }
    
    .affiliate-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .affiliate-section {
        padding: 2rem 0;
    }
    
    .affiliate-title {
        font-size: 1.75rem;
    }
    
    .affiliate-description {
        font-size: 0.95rem;
    }
    
    .affiliate-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
}