/* ============================================
   HEADER & NAVIGATION (Desktop + Mobile)
   ============================================ */

/* Header Container */
header {
    background: #ffffff;
    border-bottom: 1px solid #eef2f6;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Hamburger Button (hidden on desktop) */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #1e293b;
    padding: 8px;
    transition: color 0.2s;
}

.hamburger:hover {
    color: #2563eb;
}

/* Logo - BIG AND BOLD */
.logo {
    flex-shrink: 0;
}

.logo a {
    display: block;
}

.logo img {
    height: 120px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.2s ease;
    font-size: 100px;
}

.logo img:hover {
    transform: scale(1.03);
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 0 auto;
}

.desktop-nav a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.2s;
    padding: 8px 0;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #2563eb;
}

/* Cart Icon */
.cart-icon {
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.cart-icon i {
    font-size: 28px;
    color: #1e293b;
    transition: color 0.2s;
}

.cart-icon:hover i {
    color: #2563eb;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -14px;
    background: #2563eb;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: white;
    z-index: 1100;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    border-bottom: 1px solid #eef2f6;
}

.close-menu {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #64748b;
    transition: color 0.2s;
}

.close-menu:hover {
    color: #ef4444;
}

.mobile-menu-content {
    padding: 24px;
}

/* Search in Mobile Menu */
.search-mobile {
    position: relative;
    margin-bottom: 32px;
}

.search-mobile input {
    width: 100%;
    padding: 14px 48px 14px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 48px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.search-mobile input:focus {
    outline: none;
    border-color: #2563eb;
}

.search-mobile i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 18px;
}

/* Mobile Navigation Links */
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.mobile-nav a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #1e293b;
    padding: 8px 0;
    transition: color 0.2s;
}

.mobile-nav a:hover {
    color: #2563eb;
}

/* Mobile Contact Info */
.mobile-contact {
    margin-bottom: 32px;
    padding-top: 16px;
    border-top: 1px solid #eef2f6;
}

.mobile-contact p {
    margin-bottom: 12px;
    font-size: 15px;
    color: #475569;
}

.mobile-contact i {
    width: 28px;
    color: #2563eb;
}

/* Mobile Social Icons */
.mobile-social {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid #eef2f6;
}

.mobile-social a {
    color: #64748b;
    font-size: 22px;
    transition: color 0.2s;
}

.mobile-social a:hover {
    color: #2563eb;
}

/* ============================================
   CART MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 1200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    width: 90%;
    max-width: 550px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #eef2f6;
}

.modal-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.2s;
    line-height: 1;
}

.close-modal:hover {
    color: #ef4444;
}

.modal-body {
    padding: 24px;
}

/* Cart Items inside Modal */
.cart-items-list {
    max-height: 400px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eef2f6;
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    background: #f8fafc;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
}

.cart-item-details .price {
    font-size: 13px;
    color: #2563eb;
    font-weight: 500;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.cart-item-actions input {
    width: 60px;
    padding: 6px;
    text-align: center;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
}

.remove-item {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 14px;
    padding: 4px 8px;
    transition: color 0.2s;
}

.remove-item:hover {
    color: #dc2626;
}

.cart-total {
    text-align: right;
    font-weight: 700;
    margin: 20px 0;
    padding-top: 16px;
    border-top: 1px solid #eef2f6;
    font-size: 18px;
}

.checkout-btn {
    width: 100%;
    text-align: center;
    background: #2563eb;
}

.checkout-btn:hover {
    background: #1d4ed8;
}

/* ============================================
   RESPONSIVE BREAKPOINTS - BIG LOGO
   ============================================ */

/* Large Desktop (1600px+) */
@media (min-width: 1600px) {
    .logo img {
        height: 140px;
    }
    
    .desktop-nav a {
        font-size: 20px;
    }
    
    .cart-icon i {
        font-size: 32px;
    }
}

/* Desktop (1200px - 1600px) */
@media (max-width: 1599px) and (min-width: 1200px) {
    .logo img {
        height: 120px;
    }
}

/* Desktop Small (992px - 1200px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .logo img {
        height: 100px;
    }
    
    .desktop-nav {
        gap: 30px;
    }
    
    .desktop-nav a {
        font-size: 16px;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) and (min-width: 769px) {
    .logo img {
        height: 85px;
    }
    
    .desktop-nav {
        gap: 24px;
    }
    
    .desktop-nav a {
        font-size: 15px;
    }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
    .header-container {
        padding: 0 16px;
    }
    
    .hamburger {
        display: block;
        font-size: 28px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .logo {
        flex: 1;
        text-align: center;
    }
    
    .logo img {
        height: 75px;
    }
    
    .cart-icon i {
        font-size: 26px;
    }
    
    .cart-count {
        font-size: 11px;
        width: 20px;
        height: 20px;
        top: -8px;
        right: -12px;
    }
    
    .modal-content {
        margin: 15% auto;
        width: 95%;
    }
    
    .cart-item {
        gap: 12px;
    }
    
    .cart-item img {
        width: 60px;
        height: 60px;
    }
}

/* Small Mobile (480px - 768px) */
@media (max-width: 767px) and (min-width: 481px) {
    .logo img {
        height: 65px;
    }
}

/* Very Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .logo img {
        height: 55px;
    }
    
    .cart-icon i {
        font-size: 24px;
    }
    
    .cart-count {
        font-size: 10px;
        width: 18px;
        height: 18px;
        top: -6px;
        right: -10px;
    }
    
    .modal-body {
        padding: 16px;
    }
    
    .cart-item {
        flex-wrap: wrap;
    }
    
    .cart-item-actions {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        margin-top: 8px;
    }
}

/* Desktop (min-width: 769px) */
@media (min-width: 769px) {
    .desktop-nav {
        display: flex;
    }
    
    .hamburger {
        display: none;
    }
    
    .mobile-menu {
        display: none;
    }
}
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Content */
.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 40px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-main {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-top: 12px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 500px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #2563eb;
    color: white;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 48px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    width: auto;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.btn-primary i {
    font-size: 18px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 48px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* Trust Badge */
.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.hero-trust-badge i {
    color: #2563eb;
    font-size: 20px;
}

.hero-trust-badge span {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

/* Background Decoration */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(37, 99, 235, 0.08) 100%);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

/* ============================================
   RESPONSIVE HERO SECTION
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-container {
        gap: 40px;
    }
    
    .hero-main {
        font-size: 44px;
    }
    
    .hero-description {
        font-size: 16px;
    }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
    .hero {
        padding: 48px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 4px 12px;
    }
    
    .hero-main {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 15px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-trust-badge {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }
    
    .hero-trust-badge span {
        font-size: 12px;
    }
    
    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-img {
        width: 100%;
    }
    
    .hero::before {
        display: none;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-main {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .btn-primary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hero-trust-badge span {
        font-size: 11px;
    }
}

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .hero-container {
        max-width: 1400px;
    }
    
    .hero-main {
        font-size: 64px;
    }
    
    .hero-description {
        font-size: 20px;
        max-width: 550px;
    }
}
/* ============================================
   LATEST ITEMS SECTION (Professional E-commerce)
   ============================================ */

.latest-items {
    padding: 80px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 16px;
    color: #64748b;
    font-weight: 400;
}

/* ============================================
   PRODUCTS GRID - MODERN ECOMMERCE LAYOUT
   ============================================ */

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}

/* Product Card - Modern Design */
.product-card {
    background: #ffffff;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
   
}

/* Product Image Container - Fixed aspect ratio */
.product-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: #f8fafc;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Product Info */
.product-info {
    padding: 16px;
}

.product-category {
    font-size: 11px;
    color: #2563eb;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    display: inline-block;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 14px;
}

.product-price span {
    font-size: 13px;
    font-weight: 400;
    color: #64748b;
}

/* Select Options Button */
.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    width: auto;
}

.product-btn i {
    transition: transform 0.2s ease;
    font-size: 12px;
}

.product-btn:hover {
    background: #2563eb;
    color: white;
}

.product-btn:hover i {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE PRODUCT GRID - MODERN
   ============================================ */

/* Desktop (1200px+) - 4 columns */
@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }
}

/* Desktop Small (992px - 1199px) - 3 columns */
@media (max-width: 1199px) and (min-width: 769px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

/* Tablet (768px - 991px) - 3 columns */
@media (max-width: 991px) and (min-width: 769px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Mobile (481px - 768px) - 2 COLUMNS SIDE BY SIDE */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 24px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-category {
        font-size: 9px;
        margin-bottom: 6px;
    }
    
    .product-name {
        font-size: 13px;
        min-height: 36px;
        margin-bottom: 6px;
    }
    
    .product-price {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .product-price span {
        font-size: 11px;
    }
    
    .product-btn {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .product-btn i {
        font-size: 10px;
    }
    
    .product-badge {
        font-size: 9px;
        padding: 3px 8px;
        top: 8px;
        left: 8px;
    }
}

/* Small Mobile (361px - 480px) - 2 COLUMNS */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-name {
        font-size: 12px;
        min-height: 34px;
    }
    
    .product-price {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .product-price span {
        font-size: 10px;
    }
    
    .product-btn {
        padding: 6px 10px;
        font-size: 10px;
    }
    
    .product-category {
        font-size: 8px;
    }
}

/* Very Small Mobile (under 360px) - still 2 COLUMNS */
@media (max-width: 360px) {
    .products-grid {
        gap: 10px;
    }
    
    .product-name {
        font-size: 11px;
        min-height: 30px;
    }
    
    .product-price {
        font-size: 13px;
    }
    
    .product-btn {
        padding: 5px 8px;
        font-size: 9px;
    }
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 60px;
    font-size: 16px;
    color: #64748b;
    grid-column: 1 / -1;
}

.loading-spinner i {
    font-size: 24px;
    margin-right: 8px;
    color: #2563eb;
}

/* No Products Message */
.no-products {
    text-align: center;
    padding: 60px;
    color: #64748b;
    grid-column: 1 / -1;
}

.no-products i {
    font-size: 48px;
    margin-bottom: 16px;
    color: #cbd5e1;
}
/* ============================================
   WHY JONSONHARVEY PHARMACY SECTION
   Premium Design - Better than Healiz
   ============================================ */

.why-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.why-us::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at 0% 100%, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Section Header */
.section-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 20px;
}

.why-us .section-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.why-us .section-subtitle {
    font-size: 18px;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

/* Feature Card - Premium Design */
.feature-card {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #eef2f6;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #e2e8f0;
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

/* Feature Icon */
.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    transform: scale(1.05);
}

.feature-icon i {
    font-size: 32px;
    color: #2563eb;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
}

/* Feature Title */
.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.3;
}

/* Feature Description */
.feature-description {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 10px;
}

.feature-list li i {
    font-size: 14px;
    color: #2563eb;
    flex-shrink: 0;
}

/* Trust Badge Row */
.trust-badge-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eef2f6;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #1e293b;
}

.trust-item i {
    font-size: 24px;
    color: #2563eb;
}

/* ============================================
   RESPONSIVE - WHY US SECTION
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .why-us {
        padding: 80px 0;
    }
    
    .why-us .section-title {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .feature-card {
        padding: 28px 24px;
    }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
    .why-us {
        padding: 60px 0;
    }
    
    .section-tag {
        font-size: 12px;
    }
    
    .why-us .section-title {
        font-size: 28px;
    }
    
    .why-us .section-subtitle {
        font-size: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }
    
    .feature-card {
        padding: 24px;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 20px;
    }
    
    .feature-list {
        text-align: left;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .trust-badge-row {
        gap: 24px;
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .trust-item {
        font-size: 14px;
    }
    
    .trust-item i {
        font-size: 20px;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .why-us {
        padding: 48px 0;
    }
    
    .why-us .section-title {
        font-size: 24px;
    }
    
    .trust-badge-row {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .features-grid {
        gap: 40px;
    }
    
    .feature-card {
        padding: 40px 32px;
    }
    
    .feature-title {
        font-size: 24px;
    }
}
/* ============================================
   TESTIMONIALS SECTION WITH CAROUSEL
   Premium Design - Auto Sliding
   ============================================ */

.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.testimonials::before {
    content: '"';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 200px;
    font-family: Georgia, serif;
    color: rgba(37, 99, 235, 0.03);
    pointer-events: none;
    line-height: 1;
}

/* Trust Score Badges */
.trust-score {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.trust-score-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 20px 32px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    transition: transform 0.3s ease;
}

.trust-score-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(37, 99, 235, 0.15);
}

.stars-large {
    margin-bottom: 8px;
}

.stars-large i {
    color: #f59e0b;
    font-size: 18px;
    margin: 0 1px;
}

.trust-score-item .score {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
}

.trust-score-item .score-text {
    font-size: 13px;
    color: #64748b;
}

.trust-score-item i {
    font-size: 28px;
    margin-bottom: 8px;
}

.trust-score-item .fab.fa-google {
    color: #ea4335;
}

.trust-score-item .fab.fa-twitter {
    color: #1da1f2;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px 0 30px;
}

.carousel-track-container {
    flex: 1;
    overflow: hidden;
    border-radius: 24px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 24px;
}

/* Review Card */
.review-card-carousel {
    flex: 0 0 calc(33.333% - 16px);
    background: white;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
}

.review-card-carousel:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
}

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.reviewer-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.reviewer-details .verified-badge {
    font-size: 12px;
    color: #10b981;
}

.reviewer-details .verified-badge i {
    margin-right: 4px;
}

/* Source Badge */
.source-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    padding: 6px 12px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 500;
}

.source-badge.google {
    color: #ea4335;
}

.source-badge.twitter {
    color: #1da1f2;
}

/* Review Content */
.review-stars {
    margin-bottom: 16px;
}

.review-stars i {
    color: #f59e0b;
    font-size: 14px;
    margin-right: 2px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-date {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eef2f6;
}

/* Carousel Buttons */
.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: #2563eb;
    border-color: #2563eb;
}

.carousel-btn:hover i {
    color: white;
}

.carousel-btn i {
    font-size: 20px;
    color: #1e293b;
    transition: color 0.3s ease;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 28px;
    border-radius: 10px;
    background: #2563eb;
}

/* ============================================
   RESPONSIVE - TESTIMONIALS CAROUSEL
   ============================================ */

@media (max-width: 1024px) {
    .review-card-carousel {
        flex: 0 0 calc(50% - 12px);
    }
    
    .trust-score {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .trust-score {
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .trust-score-item {
        padding: 12px 20px;
    }
    
    .trust-score-item .score {
        font-size: 24px;
    }
    
    .carousel-container {
        gap: 12px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn i {
        font-size: 16px;
    }
    
    .review-card-carousel {
        flex: 0 0 100%;
        padding: 20px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .source-badge {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .trust-score {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-score-item {
        width: 100%;
        max-width: 200px;
    }
}
/* ============================================
   DELIVERY & SERVICE FEATURES SECTION
   Premium Design - Worldwide Delivery
   ============================================ */

.service-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.service-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 60px 0 40px;
    position: relative;
    z-index: 2;
}

/* Service Card */
.service-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #eef2f6;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #60a5fa, #2563eb);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: #e2e8f0;
    box-shadow: 0 25px 40px -12px rgba(37, 99, 235, 0.15);
}

/* Service Icon */
.service-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    transform: scale(1.05);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.3);
}

.service-icon i {
    font-size: 38px;
    color: #2563eb;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon i {
    color: white;
}

/* Service Title */
.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

/* Service Description */
.service-description {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 24px;
}

/* Service Benefits List */
.service-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    background: #f8fafc;
    padding: 16px 20px;
    border-radius: 20px;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #1e293b;
    padding: 8px 0;
    border-bottom: 1px solid #eef2f6;
}

.service-benefits li:last-child {
    border-bottom: none;
}

.service-benefits li i {
    color: #2563eb;
    font-size: 12px;
    background: rgba(37, 99, 235, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Trust Badge */
.service-trust-badge {
    text-align: center;
    padding: 32px;
    background: rgba(37, 99, 235, 0.03);
    border-radius: 60px;
    margin-top: 40px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.service-trust-badge i {
    font-size: 24px;
    color: #2563eb;
    margin-right: 12px;
}

.service-trust-badge span {
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
}

/* ============================================
   RESPONSIVE - SERVICE FEATURES
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .service-features {
        padding: 80px 0;
    }
    
    .service-grid {
        gap: 30px;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .service-title {
        font-size: 22px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 32px;
    }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
    .service-features {
        padding: 60px 0;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin: 40px 0 30px;
    }
    
    .service-card {
        padding: 32px 24px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 14px;
    }
    
    .service-benefits li {
        font-size: 12px;
    }
    
    .service-trust-badge {
        padding: 20px;
    }
    
    .service-trust-badge i {
        font-size: 20px;
    }
    
    .service-trust-badge span {
        font-size: 13px;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .service-features {
        padding: 48px 0;
    }
    
    .service-card {
        padding: 28px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 28px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-benefits {
        padding: 12px 16px;
    }
}

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .service-grid {
        gap: 48px;
    }
    
    .service-card {
        padding: 48px 36px;
    }
    
    .service-title {
        font-size: 26px;
    }
    
    .service-description {
        font-size: 16px;
    }
}
/* ============================================
   FOOTER - Premium Dark Design
   ============================================ */

.footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 64px 0 0;
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #60a5fa, #2563eb);
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

/* Footer Columns */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Footer Logo */
.footer-logo img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-about {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
}

/* Footer Title */
.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #2563eb;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #2563eb;
    transform: translateX(4px);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #94a3b8;
}

.footer-contact li i {
    width: 20px;
    color: #2563eb;
    font-size: 16px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    margin-top: 24px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-content p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.footer-payment {
    display: flex;
    gap: 20px;
}

.footer-payment i {
    font-size: 20px;
    color: #64748b;
    transition: color 0.3s ease;
}

.footer-payment i:hover {
    color: #2563eb;
}

/* ============================================
   RESPONSIVE FOOTER
   ============================================ */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer {
        padding: 48px 0 0;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a:hover {
        transform: translateX(0);
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-logo img {
        height: 40px;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .footer-links a,
    .footer-contact li,
    .footer-about {
        font-size: 13px;
    }
}
/* ============================================
   SHOP PAGE SPECIFIC STYLES
   ============================================ */
   /* ============================================
   PRODUCT DETAIL PAGE - PREMIUM DESIGN
   ============================================ */

.product-detail-section {
    padding: 60px 0;
    background: #ffffff;
}

.product-detail-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Product Detail Grid */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image-container {
    background: #f8fafc;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #eef2f6;
    margin-bottom: 20px;
}

.main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.main-image:hover {
    transform: scale(1.02);
}

/* Thumbnail Gallery */
.thumbnail-gallery {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.thumbnail.active {
    border-color: #2563eb;
    opacity: 1;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Product Info */
.product-info-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-category-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 40px;
    width: fit-content;
}

.product-name-large {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.product-price-large {
    font-size: 32px;
    font-weight: 800;
    color: #2563eb;
}

.product-price-large span {
    font-size: 18px;
    font-weight: 500;
    color: #64748b;
}

/* Description */
.product-description {
    color: #334155;
    line-height: 1.7;
    font-size: 16px;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
    padding: 24px 0;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pack-size-selector {
    flex: 1;
    min-width: 180px;
}

.pack-size-selector label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pack-select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #eef2f6;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 500;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pack-select:focus {
    outline: none;
    border-color: #2563eb;
}

.quantity-control {
    flex: 1;
    min-width: 140px;
}

.quantity-control label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quantity-input-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid #eef2f6;
    border-radius: 16px;
    overflow: hidden;
}

.qty-btn {
    width: 44px;
    height: 48px;
    background: #f8fafc;
    border: none;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #1e293b;
}

.qty-btn:hover {
    background: #2563eb;
    color: white;
}

.quantity-input {
    width: 70px;
    height: 48px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 600;
    background: white;
}

.quantity-input:focus {
    outline: none;
}

/* Add to Cart Button */
.add-to-cart-btn {
    width: auto;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 48px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    white-space: nowrap;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
}

.add-to-cart-btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.add-to-cart-btn:hover i {
    transform: translateX(4px);
}

/* Trust Badges Row */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #eef2f6;
}

.trust-badge-item {
    text-align: center;
    padding: 12px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.trust-badge-item:hover {
    transform: translateY(-2px);
    background: #eff6ff;
}

.trust-badge-item i {
    font-size: 24px;
    color: #2563eb;
    margin-bottom: 8px;
    display: block;
}

.trust-badge-item span {
    font-size: 12px;
    font-weight: 600;
    color: #1e293b;
}

.trust-badge-item small {
    font-size: 10px;
    color: #64748b;
    display: block;
    margin-top: 4px;
}

/* Payment Methods */
.payment-methods-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 20px;
}

.payment-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.payment-icons i {
    font-size: 28px;
    color: #475569;
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: #2563eb;
}

.bitcoin-badge {
    background: linear-gradient(135deg, #f7931a 0%, #ffae42 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
}

/* Product Info Tabs */
.product-info-tabs {
    margin-top: 60px;
    border-top: 1px solid #eef2f6;
    padding-top: 40px;
}

.tabs-header {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid #eef2f6;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn.active {
    color: #2563eb;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2563eb;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

.tab-content p {
    color: #334155;
    line-height: 1.8;
    margin-bottom: 20px;
}

.tab-content ul {
    list-style: none;
    padding: 0;
}

.tab-content li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: #475569;
}

.tab-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Reviews Section */
.reviews-section {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid #eef2f6;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.reviews-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 16px;
}

.average-rating {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
}

.stars-large {
    color: #f59e0b;
}

.review-card {
    background: #f8fafc;
    padding: 24px;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateX(4px);
    background: #f1f5f9;
}

.reviewer-name {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.review-stars {
    color: #f59e0b;
    margin-bottom: 12px;
}

.review-comment {
    color: #334155;
    line-height: 1.6;
    margin-bottom: 12px;
}

.review-date {
    font-size: 12px;
    color: #94a3b8;
}

.add-review-form {
    background: #f8fafc;
    padding: 32px;
    border-radius: 24px;
    margin-top: 32px;
}

.add-review-form h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Loading Spinner Full */
.loading-spinner-full {
    text-align: center;
    padding: 100px;
    color: #64748b;
}

.loading-spinner-full i {
    font-size: 48px;
    color: #2563eb;
    margin-bottom: 16px;
    display: block;
}

/* Responsive Product Page */
@media (max-width: 1024px) {
    .product-detail-grid {
        gap: 40px;
    }
    
    .product-name-large {
        font-size: 30px;
    }
    
    .product-price-large {
        font-size: 28px;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding: 40px 0;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .product-gallery {
        position: relative;
        top: 0;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .product-name-large {
        font-size: 24px;
    }
    
    .product-price-large {
        font-size: 24px;
    }
    
    .quantity-selector {
        flex-direction: column;
    }
    
    .pack-size-selector,
    .quantity-control {
        width: 100%;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .tabs-header {
        gap: 4px;
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .payment-methods-row {
        flex-direction: column;
        text-align: center;
    }
    
    .add-review-form {
        padding: 20px;
    }
}
/* ============================================
   PRICE BREAKDOWN SECTION
   ============================================ */

.price-breakdown {
    margin: 20px 0;
}

.price-breakdown-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #eef2f6;
}

.breakdown-header {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    color: #475569;
}

.breakdown-row.highlight {
    background: #eef2ff;
    margin: 4px -8px;
    padding: 8px 8px;
    border-radius: 8px;
}

.breakdown-row.savings {
    color: #10b981;
    font-weight: 500;
}

.breakdown-row.total-row {
    border-top: 1px solid #e2e8f0;
    margin-top: 8px;
    padding-top: 12px;
    font-size: 16px;
}

.total-amount {
    color: #2563eb;
    font-size: 18px;
}