* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fafafa;
    overflow-x: hidden;
}

/* App Wrapper - Full Width Responsive */
.app-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    position: relative;
}

/* Header Container */
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 28px;
    font-weight: bold;
    font-family: 'Grand Hotel', cursive;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
}

.logo i {
    font-size: 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Search Bar - Aligned to right on desktop */
.search-bar {
    max-width: 300px;
    width: 100%;
    position: relative;
    margin-left: auto;
    margin-right: 20px;
}

.search-bar i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8e8e8e;
    z-index: 1;
    font-size: 14px;
}

.search-bar input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border: 1px solid #dbdbdb;
    border-radius: 25px;
    font-size: 14px;
    background: #fafafa;
    transition: all 0.3s;
}

.search-bar input:focus {
    outline: none;
    background: white;
    border-color: #667eea;
}

.search-bar input::placeholder {
    color: #8e8e8e;
    font-size: 14px;
}

.header-actions {
    display: flex;
    gap: 24px;
    font-size: 24px;
    cursor: pointer;
    flex-shrink: 0;
}

.header-actions i {
    transition: transform 0.2s;
}

.header-actions i:hover {
    transform: scale(1.1);
}

/* ========== STICKY HEADER ========== */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Header Styles */
.main-header {
    background: white;
    border-bottom: 1px solid #dbdbdb;
}

/* Categories Bar */
.categories-wrapper {
    background: white;
    border-bottom: 1px solid #dbdbdb;
}

.categories-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scrollbar-width: none;
}

.categories-container::-webkit-scrollbar {
    display: none;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 0;
    transition: all 0.3s;
    white-space: nowrap;
}

.category-item i {
    font-size: 20px;
    color: #8e8e8e;
}

.category-item span {
    font-size: 12px;
    color: #8e8e8e;
}

.category-item.active i,
.category-item.active span {
    color: #667eea;
}

.category-item.active {
    border-bottom: 2px solid #667eea;
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {
    .search-bar {
        max-width: 250px;
        margin-right: 15px;
    }
}

/* Mobile - Search bar moves below and centers */
@media (max-width: 768px) {
    .header-container {
        padding: 10px 16px;
        flex-wrap: wrap;
        position: relative;
    }
    
    .logo {
        font-size: 22px;
        flex-shrink: 0;
    }
    
    .logo i {
        font-size: 26px;
    }
    
    /* Search bar - full width, centered below logo */
    .search-bar {
        order: 3;
        max-width: 100%;
        width: 100%;
        margin: 12px 0 0 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .search-bar input {
        padding: 10px 15px 10px 40px;
        font-size: 14px;
    }
    
    .search-bar i {
        font-size: 14px;
        left: 15px;
    }
    
    .header-actions {
        gap: 16px;
        font-size: 20px;
        margin-left: auto;
    }
    
    .header-actions i {
        font-size: 20px;
    }
    
    .categories-container {
        padding: 10px 16px;
        gap: 20px;
    }
    
    .category-item i {
        font-size: 18px;
    }
    
    .category-item span {
        font-size: 11px;
    }
}

/* Very Small Mobile */
@media (max-width: 480px) {
    .header-container {
        padding: 8px 12px;
    }
    
    .logo span {
        font-size: 16px;
    }
    
    .logo i {
        font-size: 20px;
    }
    
    .search-bar {
        margin-top: 8px;
    }
    
    .search-bar input {
        padding: 8px 12px 8px 35px;
        font-size: 12px;
    }
    
    .search-bar i {
        font-size: 12px;
        left: 12px;
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .header-actions i {
        font-size: 18px;
    }
    
    .categories-container {
        padding: 8px 12px;
        gap: 16px;
    }
    
    .category-item i {
        font-size: 16px;
    }
    
    .category-item span {
        font-size: 10px;
    }
}

/* Stories */
.stories-wrapper {
    background: white;
    border-bottom: 1px solid #f0f0f0;
}

.stories-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
}

.stories-container::-webkit-scrollbar {
    display: none;
}

.story {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    flex-shrink: 0;
}

.story-ring {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
    padding: 2px;
}

.story-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.story span {
    font-size: 12px;
    color: #262626;
}

/* Store Info Banner */
.store-info-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    margin: 10px 20px;
    border-radius: 12px;
}

.banner-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.banner-item i {
    font-size: 16px;
}

/* Main Content - Responsive Grid */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
}

.feed-container {
    display: flex;
    gap: 32px;
}

.feed-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

/* Product Card */
.product-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.product-header {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seller-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.seller-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.seller-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seller-details strong {
    font-size: 14px;
    color: #262626;
    display: block;
}

.product-meta {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.category-badge {
    font-size: 11px;
    color: #667eea;
    background: #e8eaff;
    padding: 2px 8px;
    border-radius: 4px;
}

.condition-badge {
    font-size: 11px;
    color: #28a745;
    background: #d4edda;
    padding: 2px 8px;
    border-radius: 4px;
}

/* ========== PRODUCT GALLERY - NO CROPPING ========== */

.product-gallery {
    position: relative;
    background: #f8f8f8;
    width: 100%;
    overflow: hidden;
}

/* IMPORTANT FIX */
.carousel {
    display: flex;
    transition: transform 0.4s ease;
    width: 100%;
}

/* Each slide takes exact full width */
.carousel-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f8f8f8;
    padding: 10px;
}

/* NO CROPPING */
.carousel-slide img {
    width: 100%;
    height: auto;

    max-height: 500px;
    object-fit: contain;

    display: block;
}
/* Make all product cards have consistent height for images */
.product-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    z-index: 10;
}

.carousel-prev,
.carousel-next {
    background: rgba(0,0,0,0.6);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(0,0,0,0.8);
    transform: scale(1.05);
}

.carousel-indicators {
    display: flex;
    gap: 8px;
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

/* Mobile responsive for images */
@media (max-width: 768px) {
    .product-gallery {
        min-height: 250px;
    }
    
    .carousel-slide {
        min-height: 250px;
    }
    
    .carousel-slide img {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .product-gallery {
        min-height: 200px;
    }
    
    .carousel-slide {
        min-height: 200px;
    }
    
    .carousel-slide img {
        max-height: 200px;
    }
}
/* Product Actions */
.product-actions {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
}

.action-group {
    display: flex;
    gap: 16px;
    font-size: 22px;
}

.action-group i,
.product-actions .fa-bookmark {
    cursor: pointer;
    transition: transform 0.2s;
}

.action-group i:hover,
.product-actions .fa-bookmark:hover {
    transform: scale(1.1);
}

/* Product Info */
.product-info {
    padding: 12px 16px 16px;
}

.price-section {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 22px;
    font-weight: bold;
    color: #262626;
}

.original-price {
    font-size: 14px;
    color: #8e8e8e;
    text-decoration: line-through;
}

.discount {
    font-size: 12px;
    color: #28a745;
    font-weight: 600;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #262626;
}

.product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
}

.read-more-btn {
    background: none;
    border: none;
    color: #667eea;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.read-more-link {
    display: inline-block;
    margin-top: 10px;
    color: #667eea;
    text-decoration: none;
    font-size: 13px;
}

.specifications {
    margin-top: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 13px;
}

.features {
    margin-top: 12px;
    padding: 12px;
    background: #e8eaff;
    border-radius: 8px;
    font-size: 13px;
}

.warranty {
    margin-top: 12px;
    padding: 12px;
    background: #fff3cd;
    border-radius: 8px;
    font-size: 13px;
}

/* Purchase Options */
.purchase-options {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.pickup-btn,
.delivery-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pickup-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.delivery-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.pickup-btn:hover,
.delivery-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.pickup-btn:active,
.delivery-btn:active {
    transform: translateY(0);
}

/* Sidebar - Desktop Only */
.sidebar {
    width: 320px;
    display: block;
}

.sidebar-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.sidebar-card h3 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #262626;
}

.trending-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trending-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.trending-item img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.trending-item strong {
    font-size: 14px;
    display: block;
}

.trending-item span {
    font-size: 12px;
    color: #666;
}

.help-btn {
    width: 100%;
    padding: 10px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 12px;
}

.sidebar-card ul {
    list-style: none;
}

.sidebar-card li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
}

.social-links a:hover {
    text-decoration: underline;
}

.social-links i {
    width: 25px;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.no-results i {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
}

.no-results h3 {
    color: #666;
    margin-bottom: 10px;
}

.no-results p {
    color: #999;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    justify-content: space-around;
    padding: 8px 0 20px;
    border-top: 1px solid #dbdbdb;
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 20px;
    color: #8e8e8e;
    cursor: pointer;
    transition: color 0.2s;
}

.nav-item.active {
    color: #262626;
}

.nav-item span {
    font-size: 11px;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 18px;
}

.close {
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: transform 0.2s;
}

.close:hover {
    transform: rotate(90deg);
}

.modal-body {
    padding: 24px;
}

.about-content {
    line-height: 1.6;
    color: #333;
}

.about-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.about-footer h4 {
    margin-bottom: 10px;
    color: #667eea;
}

.store-address-card {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    gap: 16px;
    border: 1px solid #667eea30;
}

.store-address-card i {
    font-size: 28px;
    color: #667eea;
}

.directions-link {
    display: inline-block;
    margin-top: 8px;
    color: #667eea;
    text-decoration: none;
    font-size: 13px;
}

.delivery-info {
    background: #e8f5e9;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #667eea;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    z-index: 3000;
    display: none;
    animation: slideUp 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .sidebar {
        width: 280px;
    }
    
    .feed-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .header-container {
        padding: 12px 20px;
    }
    
    .search-bar {
        max-width: 400px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-container {
        padding: 10px 16px;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .logo i {
        font-size: 26px;
    }
    
    .header-actions {
        gap: 16px;
        font-size: 20px;
    }
    
    .header-actions i {
        font-size: 20px;
    }
    
    .search-bar-wrapper {
        padding: 10px 16px;
    }
    
    .search-bar {
        max-width: 100%;
    }
    
    .search-bar input {
        padding: 10px 15px 10px 38px;
        font-size: 13px;
    }
    
    .search-bar i {
        font-size: 13px;
    }
    
    .categories-container {
        padding: 10px 16px;
        gap: 20px;
    }
    
    .category-item i {
        font-size: 18px;
    }
    
    .category-item span {
        font-size: 11px;
    }
    
    .stories-container {
        padding: 12px 16px;
        gap: 16px;
    }
    
    .story-ring {
        width: 60px;
        height: 60px;
    }
    
    .store-info-banner {
        margin: 10px;
        padding: 10px;
    }
    
    .banner-content {
        gap: 10px;
    }
    
    .banner-item {
        font-size: 11px;
    }
    
    .main-content {
        padding: 16px;
    }
    
    .feed-container {
        flex-direction: column;
    }
    
    .sidebar {
        display: none;
    }
    
    .feed-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .product-card:hover {
        transform: none;
    }
    
    .mobile-bottom-nav {
        display: flex;
    }
    
    .main-content {
        margin-bottom: 70px;
    }
    
    .purchase-options {
        flex-direction: column;
    }
    
    .pickup-btn,
    .delivery-btn {
        padding: 10px;
    }
    
    .current-price {
        font-size: 18px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
}

/* Very Small Mobile */
@media (max-width: 480px) {
    .header-container {
        padding: 8px 12px;
    }
    
    .logo span {
        font-size: 16px;
    }
    
    .logo i {
        font-size: 20px;
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .header-actions i {
        font-size: 18px;
    }
    
    .search-bar-wrapper {
        padding: 8px 12px;
    }
    
    .search-bar input {
        padding: 8px 12px 8px 35px;
        font-size: 12px;
    }
    
    .search-bar i {
        font-size: 12px;
        left: 12px;
    }
    
    .categories-container {
        padding: 8px 12px;
        gap: 16px;
    }
    
    .category-item i {
        font-size: 16px;
    }
    
    .category-item span {
        font-size: 10px;
    }
    
    .story-ring {
        width: 50px;
        height: 50px;
    }
    
    .product-title {
        font-size: 14px;
    }
    
    .toast {
        white-space: normal;
        text-align: center;
        max-width: 90%;
        font-size: 12px;
    }
}

/* Desktop Large Screens */
@media (min-width: 1401px) and (max-width: 1920px) {
    .feed-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

@media (min-width: 1921px) {
    .app-wrapper {
        max-width: 1600px;
    }
    
    .feed-grid {
        grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    }
    
    .sidebar {
        width: 360px;
    }
}

/* Print Styles */
@media print {
    .sticky-header,
    .header-actions,
    .categories-wrapper,
    .stories-wrapper,
    .purchase-options,
    .mobile-bottom-nav,
    .sidebar,
    .search-bar-wrapper {
        display: none;
    }
}
/* Sidebar - Desktop Only */
.sidebar {
    width: 320px;
    display: block;
}

/* Mobile - Move sidebar sections to bottom */
@media (max-width: 768px) {
    .feed-container {
        flex-direction: column;
    }
    
    /* Hide desktop sidebar, show mobile bottom sections */
    .sidebar {
        display: none;
    }
    
    /* Mobile Bottom Sections Container */
    .mobile-bottom-sections {
        display: block;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #e0e0e0;
    }
    
    .mobile-section {
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 16px;
    }
    
    .mobile-section h3 {
        font-size: 16px;
        margin-bottom: 16px;
        color: #262626;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .mobile-section ul {
        list-style: none;
    }
    
    .mobile-section li {
        padding: 8px 0;
        color: #666;
        font-size: 14px;
    }
    
    .mobile-section .social-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .mobile-section .social-links a {
        color: #667eea;
        text-decoration: none;
        font-size: 14px;
    }
    
    .mobile-section .help-btn {
        width: 100%;
        padding: 10px;
        background: #667eea;
        color: white;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        margin-top: 12px;
    }
}

/* Desktop - hide mobile sections */
@media (min-width: 769px) {
    .mobile-bottom-sections {
        display: none;
    }
}
.action-link,
.share-btn {
    background: none;
    border: none;
    text-decoration: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    transition: transform 0.2s ease;
}

.action-link:hover,
.share-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    color: #25D366;
}

.share-btn {
    color: #667eea;
}
.mobile-bottom-nav a {
    text-decoration: none;
    color: inherit;
}
/* Testimonials Modal - 3 inch x 2 inch Photos (No Cropping) */
.testimonials-modal {
    max-width: 700px;
}

.testimonials-modal-body {
    max-height: 70vh;
    overflow-y: auto;
    padding: 20px;
}

.testimonial-item-modal {
    padding: 30px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.testimonial-header-modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

/* 3 inch x 2 inch = 288px x 192px at 96 DPI */
/* For computer/desktop view - exact size */
.testimonial-photo-modal {
    width: 288px;
    height: 192px;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border: 2px solid #fff;
    background: #f8f9fa;
}

/* For larger desktop screens */
@media (min-width: 1400px) {
    .testimonial-photo-modal {
        width: 350px;
        height: 233px;
    }
}

/* For standard desktop (1366px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .testimonial-photo-modal {
        width: 300px;
        height: 200px;
    }
}

/* For smaller desktop/laptop */
@media (min-width: 992px) and (max-width: 1199px) {
    .testimonial-photo-modal {
        width: 280px;
        height: 187px;
    }
}

/* For tablet landscape */
@media (min-width: 768px) and (max-width: 991px) {
    .testimonial-photo-modal {
        width: 320px;
        height: 213px;
    }
}

/* For mobile */
@media (max-width: 767px) {
    .testimonial-photo-modal {
        width: 100%;
        max-width: 280px;
        height: auto;
        aspect-ratio: 3 / 2;
    }
}

/* Default placeholder when no image uploaded */
.default-photo-modal {
    width: 288px;
    height: 192px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.default-photo-modal i {
    font-size: 50px;
}

.default-photo-modal span {
    font-size: 14px;
    opacity: 0.9;
}

/* Responsive for default photo */
@media (min-width: 1400px) {
    .default-photo-modal {
        width: 350px;
        height: 233px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .default-photo-modal {
        width: 300px;
        height: 200px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .default-photo-modal {
        width: 280px;
        height: 187px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .default-photo-modal {
        width: 320px;
        height: 213px;
    }
}

@media (max-width: 767px) {
    .default-photo-modal {
        width: 100%;
        max-width: 280px;
        height: auto;
        aspect-ratio: 3 / 2;
    }
    
    .default-photo-modal i {
        font-size: 35px;
    }
}

.testimonial-info-modal {
    text-align: center;
    margin-top: 15px;
}

.testimonial-info-modal strong {
    display: block;
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-info-modal small {
    font-size: 13px;
    color: #999;
}

.rating-stars-modal {
    margin-top: 8px;
}

.rating-stars-modal i {
    font-size: 16px;
    color: #ffc107;
    margin: 0 2px;
}

.testimonial-message-modal {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin-top: 15px;
    text-align: center;
    padding: 0 20px;
}

/* No cropping - image fully visible */
.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Sidebar Testimonials (Desktop only) */
.sidebar-testimonial-photo img {
    width: 55px;
    height: 55px;
  
    object-fit: cover;
}

.default-sidebar-photo {
    width: 55px;
    height: 55px;
   
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.sidebar-testimonial-item {
    display: flex;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-testimonial-content {
    flex: 1;
}

.sidebar-testimonial-rating i {
    font-size: 11px;
    color: #ffc107;
}

.sidebar-testimonial-content p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin: 5px 0;
}

.sidebar-testimonial-content strong {
    font-size: 11px;
    color: #333;
}
/* Read More Styles */
.desc-short {
    display: block;
}

.desc-full {
    display: none;
}

.read-more-btn, .read-less-btn {
    background: none;
    border: none;
    color: #667eea;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 10px;
    margin-left: 5px;
    display: inline-block;
}

.read-more-btn:hover, .read-less-btn:hover {
    background: #f0f0f0;
    border-radius: 5px;
}

.specifications, .features, .warranty {
    margin-top: 12px;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
}

.specifications {
    background: #f8f9fa;
}

.features {
    background: #e8eaff;
}

.warranty {
    background: #fff3cd;
}
/* Google Play Icon Styles - Fixed Size 96x54px */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    position: relative;
}

.google-play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
    text-decoration: none;
    margin-left: auto;
    flex-shrink: 0;
}

.google-play-icon:hover {
    transform: scale(1.02);
}

.google-play-img {
    width: 175px;
    height: 54px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Mobile responsive - slightly smaller but maintain ratio */
@media (max-width: 768px) {
    .google-play-img {
        width: 141px;
        height: 45px;
    }
    
    .header-container {
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .google-play-img {
        width: 70px;
        height: 39px;
    }
}