* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* Header / Navigation */
header {
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

header .logo {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

.hamburger-menu {
    display: none;
}

.main-nav {
    display: flex;
}

header nav {
    display: flex;
    gap: 25px;
}

header nav a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

header nav a:hover {
    color: #333;
}

header .right {
    display: flex;
    gap: 15px;
    align-items: center;
}

header .right a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

header .cart-icon {
    position: relative;
}

header .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #d32f2f;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

main {
    min-height: calc(100vh - 200px);
    width: 100%;
    overflow-x: hidden;
    flex: 1;
}

/* Hero / Search Section */
.hero {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
    overflow: visible;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.search-bar {
    display: flex;
    gap: 0;
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    z-index: 100;
}

.search-bar input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-right: none;
    border-radius: 6px 0 0 6px;
    font-size: 15px;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
    background-color: #ffffff;
}

.search-bar input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.search-bar input::placeholder {
    color: #999;
    font-weight: 500;
}

.search-bar button {
    padding: 14px 32px;
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    color: white;
    border: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    font-size: 15px;
}

.search-bar button:hover {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.search-bar button:active {
    transform: scale(0.98);
}

/* Autocomplete Dropdown */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 450px;
    overflow-y: auto;
    z-index: 10001;
    display: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-suggestions.show {
    display: block;
}

.suggestion-item {
    padding: 14px 18px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.suggestion-item:hover {
    background-color: #f9fafb;
    padding-left: 22px;
}

.suggestion-item:active {
    background-color: #f0f0f0;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-content {
    flex: 1;
    min-width: 0;
}

.suggestion-name {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.suggestion-price {
    font-size: 13px;
    color: #4CAF50;
    font-weight: 600;
}

/* Trust Points */
.trust-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
    padding: 30px 0;
    text-align: center;
}

.trust-item h4 {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.trust-item p {
    font-size: 12px;
    color: #666;
}

/* Product Grid */
.products-section {
    padding: 40px 0;
}

.section-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
    font-weight: 700;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 auto 40px;
    max-width: 1200px;
    width: 100%;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.product-image-link {
    display: block;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background-color: #ffffff;
    transition: transform 0.3s;
    padding: 10px;
}

.product-image-link:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 12px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    text-decoration: none;
    display: block;
}

.product-name:hover {
    color: #0066cc;
}

.product-category {
    display: block;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 8px;
}

.product-description {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-category {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
    display: block;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.product-description {
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
}

.buy-btn {
    width: 100%;
    padding: 12px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.buy-btn:hover {
    background-color: #555;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.buy-btn:active {
    transform: translateY(0);
}

/* Category Page */
.category-header {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.category-header h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.category-description {
    color: #666;
    line-height: 1.8;
    max-width: 800px;
}

.breadcrumbs {
    font-size: 12px;
    margin-bottom: 20px;
    color: #666;
}

.breadcrumbs a {
    color: #0066cc;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    margin: 0 5px;
}

/* Product Page */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-main-image {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #eee;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
}

.product-thumbnail {
    width: 60px;
    height: 60px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    object-fit: cover;
    transition: border-color 0.3s;
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: #333;
}

.product-content h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.product-rating {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

.product-price-detail {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.product-description-full {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 20px;
}

.benefits-list li {
    padding: 8px 0;
    padding-left: 25px;
    color: #666;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-size: 18px;
}

.quantity-selector input {
    width: 60px;
    text-align: center;
    padding: 8px;
    border: 1px solid #ddd;
}

.add-to-cart-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #555 0%, #777 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.add-to-cart-btn:active {
    transform: translateY(-1px);
}

.add-to-cart-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* FAQ Section */
.faq-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.faq-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.faq-question {
    padding: 15px;
    background-color: #f9f9f9;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-answer {
    padding: 15px;
    display: none;
    color: #666;
    line-height: 1.8;
}

.faq-answer.show {
    display: block;
}

/* Related Products */
.related-products {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

/* Cart Page */
.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    padding: 40px 0;
}

.cart-items {
    background: white;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr 100px 100px 50px;
    gap: 15px;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-name {
    font-weight: 600;
    color: #333;
}

.cart-item-price {
    text-align: center;
}

.remove-item {
    color: #d32f2f;
    cursor: pointer;
    text-align: center;
}

.cart-summary {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    height: fit-content;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.summary-line.total {
    font-weight: 700;
    font-size: 18px;
    border-bottom: none;
    color: #333;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 20px;
}

.checkout-btn:hover {
    background-color: #45a049;
}

.remove-item-btn {
    padding: 6px 12px;
    background-color: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.remove-item-btn:hover {
    background-color: #cc0000;
}

.remove-item-btn:active {
    background-color: #990000;
}

/* Checkout Form */
.checkout-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #333;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

footer h4 {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
}

footer a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 13px;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}

footer .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    font-size: 12px;
    color: #999;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #4caf50;
    color: white;
    padding: 16px 24px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 10000;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

.toast.show {
    display: block;
}

.toast.error {
    background: #d32f2f;
}

.toast.success {
    background: #4caf50;
}

.toast.info {
    background: #1976d2;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.toast.hide {
    animation: slideOut 0.3s ease-in forwards;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 40px 0;
    flex-wrap: wrap;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .pagination {
        order: 2;
        margin: 30px 0;
    }
}

.pagination a,
.pagination span {
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    min-width: 30px;
    text-align: center;
}

.pagination a:hover {
    background-color: #f5f5f5;
}

.pagination .active {
    background-color: #333;
    color: white;
    border-color: #333;
}

.pagination-dots {
    display: flex;
    align-items: center;
    padding: 0 4px;
    color: #666;
    font-size: 14px;
}

.pagination-next {
    padding: 8px 12px !important;
    margin-left: 10px;
    background-color: #333 !important;
    color: white !important;
    border-color: #333 !important;
}

/* Filters */
.filters {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.filter-option {
    margin-bottom: 8px;
}

.filter-option label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0;
        overflow-x: hidden;
    }
    
    .hamburger-menu {
        position: absolute;
        top: 12px;
        left: 15px;
        display: flex;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 5px;
        z-index: 200;
    }
    
    .hamburger-menu span {
        width: 25px;
        height: 3px;
        background-color: #333;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }
    
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .main-nav {
        display: none;
        position: fixed;
        left: 0;
        top: 60px;
        width: 250px;
        height: calc(100vh - 60px);
        background-color: #fff;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
        z-index: 199;
        border-right: 1px solid #eee;
        overflow-y: auto;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav a {
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 14px;
        color: #333;
        text-decoration: none;
        transition: background-color 0.2s;
    }
    
    .main-nav a:hover {
        background-color: #f5f5f5;
        color: #333;
    }
    
    header .container {
        flex-direction: column;
        gap: 10px;
        padding: 10px 15px;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    
    header .logo {
        font-size: 20px;
        order: -1;
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }
    
    header nav {
        width: 100%;
        justify-content: center;
        gap: 12px;
        font-size: 12px;
    }
    
    .hero {
        padding: 40px 15px;
    }
    
    .search-bar {
        max-width: 100%;
        margin: 20px 15px !important;
    }
    
    .search-bar input {
        padding: 12px 15px;
        font-size: 16px;
        border-radius: 6px 0 0 6px;
    }
    
    .search-bar button {
        padding: 12px 24px;
        font-size: 14px;
        border-radius: 0 6px 6px 0;
    }
    
    .search-suggestions {
        max-height: 300px;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        border-radius: 0 0 8px 8px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 100%;
        margin: 0;
        padding: 0 12px 40px 12px;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .shop-container {
        display: flex !important;
        flex-direction: column;
        overflow-x: hidden;
        gap: 0;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
    }
    
    .products-container {
        order: 1;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        margin: 0 auto;
        padding: 0 !important;
        box-sizing: border-box;
        flex: 1;
    }
    
    .filters {
        display: none !important;
        visibility: hidden;
        position: absolute;
        width: 0;
        height: 0;
        margin: 0 !important;
        padding: 0 !important;
        border: none;
    }
    
    .product-detail {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-gallery {
        width: 100%;
    }
    
    .product-main-image {
        width: 100%;
        max-height: 300px;
    }
    
    .product-thumbnails {
        gap: 8px;
    }
    
    .product-thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .cart-container {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr 50px;
    }
    
    .checkout-form {
        grid-template-columns: 1fr;
    }
    
    header .container {
        flex-direction: column;
        gap: 10px;
        padding: 10px 15px;
        justify-content: center;
        align-items: center;
    }
    
    header .logo {
        font-size: 20px;
    }
    
    header nav {
        width: 100%;
        justify-content: center;
        gap: 12px;
        font-size: 12px;
    }
    
    header nav a {
        font-size: 12px;
    }
    
    header .right {
        gap: 10px;
    }
    
    header .right a {
        font-size: 12px;
    }
    
    .trust-section {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 0;
    }
    
    .product-card {
        border: 1px solid #eee;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-name {
        font-size: 13px;
    }
    
    .product-price {
        font-size: 16px;
    }
    
    .product-description {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .buy-btn {
        padding: 10px;
        font-size: 12px;
    }
    
    .category-header h1 {
        font-size: 24px;
    }
    
    .breadcrumbs {
        font-size: 12px;
    }
    
    .quantity-selector {
        flex-wrap: wrap;
    }
    
    .quantity-selector input {
        width: 50px;
    }
    
    .add-to-cart-btn {
        width: 100%;
    }
    
    /* Tablet Cart Mobile */
    .cart-container {
        padding: 0 15px;
    }
    
    .cart-item {
        padding: 12px;
        gap: 12px;
    }
    
    .cart-item-image {
        width: 100px;
        height: 100px;
    }
    
    .cart-summary {
        padding: 15px;
        margin-top: 20px;
    }
    
    /* Tablet Checkout */
    .checkout-form {
        padding: 0 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    /* Product Content Tablet */
    .product-content {
        padding: 0 15px;
    }
    
    .product-content h1 {
        font-size: 26px;
    }
    
    .product-price-detail {
        font-size: 22px;
    }
    
    /* General spacing tablet */
    h1 {
        font-size: 28px;
        padding: 0 15px;
    }
    
    h2 {
        font-size: 22px;
        padding: 0 15px;
    }
    
    p {
        padding: 0 15px;
    }
    
    .faq-section {
        padding: 20px 0;
    }
    
    .faq-item {
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    html, body {
        width: 100%;
        overflow-x: hidden;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 20px;
    }
    
    .hero p {
        font-size: 14px;
    }

    /* Mobile Search Bar Fixes */
    .search-bar {
        flex-direction: column;
        gap: 0;
        position: static;
        margin: 15px 15px 0 15px;
        width: auto;
    }

    .search-bar input {
        padding: 12px 15px;
        font-size: 16px;
        border-radius: 6px 6px 0 0;
        border: 2px solid #e0e0e0;
    }

    .search-bar button {
        border-radius: 0 0 6px 6px;
        padding: 12px;
    }

    .search-suggestions {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        max-height: 250px;
        margin: 0;
        border-radius: 0 0 6px 6px;
        border-top: 1px solid #e0e0e0;
    }
    
    .container {
        padding: 0;
        overflow-x: hidden;
        overflow-x: hidden;
    }
    
    header .container {
        padding: 10px 10px;
        justify-content: center;
        flex-direction: column;
        gap: 8px;
    }
    
    header nav {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }
    
    header nav a {
        font-size: 11px;
    }
    
    .products-grid {
        grid-template-columns: repeat(1, 1fr);
        margin: 0;
        padding: 0;
        width: 100%;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-detail {
        padding: 20px 0;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .category-header h1 {
        font-size: 20px;
    }
    
    .product-card {
        border: 1px solid #eee;
    }
    
    .product-image {
        height: 250px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-name {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .product-price {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .product-description {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .buy-btn {
        padding: 12px;
        font-size: 13px;
        font-weight: 600;
    }
    
    .product-category {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    /* Cart Page Mobile */
    .cart-items {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        padding: 12px;
        gap: 12px;
    }
    
    .cart-item-image {
        width: 100%;
        height: 150px;
    }
    
    .cart-summary {
        padding: 15px;
    }
    
    /* Checkout Page Mobile */
    .checkout-form {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .form-group {
        width: 100%;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
    
    /* Product Detail Mobile */
    .product-content h1 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .product-price-detail {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    .quantity-selector {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .quantity-selector input {
        width: 60px;
        padding: 10px;
    }
    
    .add-to-cart-btn {
        width: 100%;
        padding: 14px;
        font-size: 14px;
    }
    
    /* FAQ Section Mobile */
    .faq-section {
        padding: 15px 0;
    }
    
    .faq-item {
        margin-bottom: 12px;
        padding: 12px;
        border: 1px solid #eee;
        border-radius: 4px;
    }
    
    /* Contact Form Mobile */
    .contact-form {
        padding: 0 15px;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        width: 100%;
        padding: 12px;
        margin-bottom: 12px;
        font-size: 16px;
    }
    
    /* Search Results Mobile */
    .search-results {
        padding: 0 15px;
    }
    
    /* Breadcrumbs Mobile */
    .breadcrumbs {
        font-size: 12px;
        padding: 0 15px;
        margin: 15px 0;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    /* Tables Mobile */
    table {
        font-size: 12px;
    }
    
    table th,
    table td {
        padding: 8px;
    }
    
    /* Section spacing */
    h1 {
        font-size: 24px;
        margin: 20px 0 15px 0;
        padding: 0 15px;
    }
    
    h2 {
        font-size: 20px;
        margin: 15px 0;
        padding: 0 15px;
    }
    
    h3 {
        font-size: 16px;
    }
    
    p {
        padding: 0 15px;
    }
    
    /* Trust section Mobile */
    .trust-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 15px;
    }
    
    .trust-item {
        padding: 12px;
    }
    
    .trust-item h4 {
        font-size: 13px;
    }
    
    .trust-item p {
        font-size: 12px;
    }
}

/* Shop Page Styles */
.shop-container {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 0;
    margin-bottom: 30px;
    align-items: start;
}

.filters {
    width: 180px;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.filter-option {
    margin-bottom: 8px;
    padding: 6px 0;
}

.filter-option a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.filter-option a:hover {
    color: #333;
}

.products-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
}

.breadcrumbs {
    margin-bottom: 20px;
    padding: 0;
    font-size: 14px;
    color: #666;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
    margin: 0 6px;
}

.breadcrumbs a:hover {
    color: #333;
}

.breadcrumbs span {
    color: #ccc;
    margin: 0 6px;
}

.category-header {
    margin-bottom: 30px;
}

.category-header h1 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #333;
}

.category-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Review Section Styling */
.reviews-main-container {
    width: calc(100% - 40px) !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
}

.review-form-container input,
.review-form-container textarea {
    background: #ffffff !important;
}

.review-form-container input:focus,
.review-form-container textarea:focus {
    border-color: #ffc107 !important;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1) !important;
}

.star-rating:hover {
    filter: drop-shadow(0 0 4px rgba(255, 193, 7, 0.5));
}

.rating-summary {
    border-left: 5px solid #ffc107 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .reviews-main-container {
        padding: 30px 20px !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .rating-summary {
        padding: 25px 15px !important;
    }
    
    .rating-summary > div {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .rating-summary > div > div:first-child {
        min-width: auto !important;
    }
    
    .review-form-container {
        padding: 25px 15px !important;
    }
    
    .review-form-container h3 {
        font-size: 18px !important;
    }
    
    .star-rating {
        font-size: 28px !important;
    }
    
    .review-card {
        margin-bottom: 12px !important;
    }
}

@media (max-width: 480px) {
    .reviews-main-container {
        padding: 20px 15px !important;
    }
    
    .review-form-container {
        padding: 20px 15px !important;
    }
    
    .rating-summary {
        padding: 20px 12px !important;
    }
    
    .star-rating {
        font-size: 24px !important;
    }
    
    .rating-summary > div > div:last-child {
        display: none;
    }
}
