/* 
==============================================
E-Commerce Website CSS
Main Stylesheet for all pages
==============================================
*/

/* Header Section */
.header-section {
    background: white;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .header-img img {
    width: 100px;
    height: 100px;
}

.header .header-form {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgb(226, 225, 225);
}

.header .header-form select,
.header .header-form input,
.header .header-form button {
    background: white;
    border: none;
    outline: none;
}

.header .header-form button:hover {
    color: rgb(0, 217, 255);
}

.header .header-icon {
    display: flex;
    align-items: center;
}

.header .header-icon div {
    text-align: center;
    margin-inline: 15px;
    position: relative;
}

.header .header-icon div i {
    font-size: 25px;
}

.header .header-icon div p {
    margin: 0;
}

/* Navbar */
.navbar {
    background: rgb(255, 0, 119);
}

.navbar .nav-item .nav-link {
    font-weight: bold;
    color: white;
}

.navbar .nav-item {
    position: relative;
    padding: 10px 15px;
}

.navbar .nav-item::before,
.navbar .nav-item::after {
    content: "";
    position: absolute;
    height: 3px;
    background: rgb(0, 174, 255);
    width: 0;
    transition: width 0.5s ease;
}

.navbar .nav-item::before {
    top: 0;
    left: 0;
}

.navbar .nav-item::after {
    bottom: 0;
    right: 0;
}

.navbar .nav-item:hover::before,
.navbar .nav-item:hover::after,
.navbar .nav-item.active::before,
.navbar .nav-item.active::after {
    width: 100%;
}

.navbar-collapse a {
    color: white;
    text-decoration: none;
}

/* Banner Section (index.html) */
.banner-section {
    padding-block: 50px;
}

.banner {
    height: 400px;
    border-radius: 10px;
    background: url("image/banner1.jpg");
    background-size: 100% 100%;
}

/* Products Section */
.Products-section {
    padding-block: 50px;
}

.product .product-card {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px black;
}

.product .product-card a img {
    width: 100%;
}

.product .product-card .rating i {
    font-size: 0.8rem;
}

.product .product-card .stock-status {
    width: 80px;
    height: 40px;
    background: rgba(0, 128, 0, 0.219);
    text-align: center;
    align-content: center;
    border-radius: 50px;
    border: 1px solid green;
}

/* About Section (index.html) */
.about-section {
    padding-block: 50px;
    background: rgb(245, 244, 244);
}

.about-section .about .about-content h4 {
    margin-top: 30px;
}

.about-section .about .about-content p {
    margin-top: 30px;
}

.about-content p {
    color: rgb(138, 125, 125);
}

.about .aboutimg {
    height: 100%;
}

.about .aboutimg img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px black;
}

/* Trending Products Section */
.trending-products {
    padding-block: 50px;
}

.slider-list {
    display: grid;
    grid-auto-flow: column;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: 0;
    padding: 20px;
    scroll-padding-left: 5px;
}

.trending-products .slider-list {
    gap: 15px;
    grid-auto-columns: calc((100% / 4) - 5px);
}

.slider-list::-webkit-scrollbar {
    display: none;
}

.slider-section .slider-list.cursor {
    cursor: grab;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.slider-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 0px 5px 0px black;
    padding: 20px;
    border-radius: 10px;
}

.slider-section .slider-list.no-transition {
    scroll-behavior: auto;
}

.slider-section .slider-list .slider-items {
    scroll-snap-align: start;
}

.trending-products .product-card {
    width: 100%;
}

.trending-products .product-card a img {
    width: 100%;
}

.trending-products .product-card .rating i {
    font-size: 0.8rem;
}

.trending-products .product-card .stock-status {
    width: 80px;
    height: 40px;
    background: rgba(0, 128, 0, 0.219);
    text-align: center;
    align-content: center;
    border-radius: 50px;
    border: 1px solid green;
}

/* Reels Section */
.reel-section {
    padding-block: 50px;
}

.reel-section .reel {
    display: grid;
    grid-auto-flow: column;
    gap: 25px;
    grid-auto-columns: calc((100% / 3) - 0px);
}

.reel-section .reels-item img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px black;
}

/* Testimonial Section */
.testimonial-section {
    padding-block: 50px;
}

.testimonial-section .slider-list {
    gap: 25px;
    grid-auto-columns: calc((100% / 2) - 5px);
}

.testimonial-section .slider-list .img img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

/* Blog Section (index.html) */
.blog-section {
    padding-block: 50px;
    background: rgb(245, 244, 244);
}

.blog-section .slider-list {
    gap: 25px;
    grid-auto-columns: calc((100% / 2) - 5px);
}

.blog-section .slider-items {
    background: white;
}

.blog-section .slider-items a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    color: black;
}

.blog-section .slider-items a .img {
    margin-bottom: 20px;
}

.blog-section .slider-items a .img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Top Mobile Section */
.top-moblie-section {
    padding-block: 50px;
}

.top-moblie-section .mobile table thead tr {
    height: 50px;
    color: rgb(31, 0, 167);
    background: rgba(0, 0, 255, 0.459);
}

.top-moblie-section .mobile table {
    border-radius: 10px 10px 0px 0px;
    overflow: hidden;
}

.top-moblie-section .mobile table thead tr th,
.top-moblie-section .mobile table tbody tr td {
    padding: 20px;
}

.top-moblie-section .table .table-scroll-information {
    display: none;
}

.top-moblie-section .mobile table tbody tr td span {
    padding: 5px;
    border-radius: 8px;
    color: white;
    background: rgb(8, 235, 8);
}

.top-moblie-section .mobile table tbody tr:nth-child(2n) {
    background: rgb(229, 229, 230);
}

.top-moblie-section .mobile table tbody tr:hover {
    background: rgba(0, 162, 255, 0.205);
}

/* Available Services Section */
.available-services {
    padding-block: 50px;
}

.available-services .services .services-item {
    height: 60px;
    align-content: center;
    border-radius: 10px;
    border-left: 5px solid rgba(255, 0, 0, 0.541);
    background: rgb(243, 242, 242);
}

.available-services .services .services-item p {
    padding-left: 10px;
    margin: 0;
}

/* FAQ Section */
.fq-section {
    padding-block: 50px;
}

.fq-items {
    box-shadow: 0px 0px 2px 0px black;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.fq-items .fq-header {
    min-height: 60px;
    align-content: center;
    color: rgb(27 13 111);
    font-weight: bold;
    background: rgba(0, 0, 255, 0.534);
    padding: 15px;
}

.fq-items .fq-content {
    display: none;
    padding: 12px;
}

.fq-minus {
    display: none;
}

.fq-items.active .fq-content {
    display: block;
}

.fq-items.active .fq-plus {
    display: none;
    margin-left: 10px;
}

.fq-items.active .fq-minus {
    display: inline;
    margin-left: 10px;
}

/* Footer Section */
.footer {
    border-top: 1px solid rgb(182, 181, 181);
    padding-block: 30px;
    background: white;
}

.footer .footer-section-first {
    padding-bottom: 50px;
    border-bottom: 1px solid rgb(182, 181, 181);
}

.footer .footer-section-first .footer-logo img {
    width: 70px;
    height: 70px;
}

.footer .footer-section-first .footer-items {
    list-style: none;
    padding: 0;
    line-height: 40px;
}

.footer .footer-section-first .icons-content i {
    color: rgba(0, 128, 0, 0.692);
}

.footer .footer-section-first .footer-items a {
    text-decoration: none;
    color: rgb(61, 61, 61);
}

.footer .footer-section-first .last-icon i {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    text-align: center;
    align-content: center;
    color: rgb(34, 4, 4);
    background: rgba(0, 128, 0, 0.37);
}

.footer .footer-section-second {
    padding-top: 20px;
}

/* About Page Specific Styles */
.about-hero-banner {
    padding-block: 50px;
}

.about-hero-banner .container {
    height: 450px;
    color: white;
    background: #0d6efd;
    border-radius: 15px;
    text-align: center;
    align-content: center;
}

.store-section {
    padding-block: 100px;
}

.store-section .store-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px black;
}

.counter-table {
    height: 450px;
    background: linear-gradient(rgba(0, 0, 0, 0.856), rgba(0, 0, 0, 0.856)), url("image/countertablebanner.jpg");
    background-size: 100% 100%;
    align-content: center;
}

.counter-table hr {
    display: none;
    border: 1px solid white !important;
}

.counter-table .counter-items {
    color: white;
    padding: 20px;
    text-align: center;
    text-transform: capitalize;
}

.counter-table .counter-items.first,
.counter-table .counter-items.second,
.counter-table .counter-items.thard {
    border-right: 1px solid white;
}

@media screen and (max-width:992px) {
    .counter-table {
        height: auto;
    }

    .counter-table hr {
        display:block;
    }

    .counter-table .counter-items.second {
        border: none;
    }
}

@media screen and (max-width:575px) {
    .counter-table {
        height: auto;
    }
    .counter-table hr {
        display:none;
    }
    .counter-table .counter-items.first,
    .counter-table .counter-items.second,
    .counter-table .counter-items.thard {
        border-right: none;
        border-bottom: 1px solid white !important;
    }
}

.counter-table .counter-items i {
    width: 70px;
    height: 70px;
    background: #ffffff3f;
    font-size: 2.3rem;
    border-radius: 50%;
    text-align: center;
    align-content: center;
}

.counter-table .counter-items h3 {
    margin-block: 20px;
}

.counter-table .counter-items h2 {
    font-size: 1.5rem;
}

/* Products Page Specific Styles */
.products-page {
    padding: 50px 0;
}

.category-sidebar {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.category-sidebar h3 {
    color: #0dcaf0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0dcaf0;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-list li:hover,
.category-list li.active {
    background: #0dcaf0;
    color: white;
}

.category-list li i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.filter-section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.price-filter .form-range {
    height: 8px;
}

.price-filter .price-display {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-weight: bold;
}

.brand-filter .form-check {
    margin-bottom: 8px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-options select {
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.view-options {
    display: flex;
    gap: 10px;
}

.view-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover,
.view-btn.active {
    background: #0dcaf0;
    color: white;
    border-color: #0dcaf0;
}

.pagination {
    justify-content: center;
    margin-top: 50px;
}

.page-link {
    color: #0dcaf0;
    border: 1px solid #0dcaf0;
    margin: 0 5px;
    border-radius: 5px;
}

.page-item.active .page-link {
    background: #0dcaf0;
    border-color: #0dcaf0;
    color: white;
}

/* Accessories Page Specific Styles */
.accessories-page-section {
    padding: 50px 0;
}

.accessories-banner {
    background: linear-gradient(135deg, #0dcaf0, #0d6efd);
    color: white;
    padding: 50px 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    text-align: center;
}

.accessories-banner h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.accessories-banner .badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.accessories-banner .badge {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-weight: 500;
}

.accessory-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.category-box {
    background: white;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
}

.category-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(13, 202, 240, 0.15);
    border-color: #0dcaf0;
}

.category-box-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #e3f2fd, #0dcaf0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.category-box h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.accessory-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.accessory-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.accessory-img-container {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.accessory-img-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.accessory-content {
    padding: 20px;
}

.accessory-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #e3f2fd;
    color: #0d6efd;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.accessory-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
    height: 50px;
    overflow: hidden;
}

.accessory-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.3rem;
    font-weight: bold;
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.discount-tag {
    background: #dc3545;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.accessory-specs-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.accessory-specs-list li {
    margin-bottom: 6px;
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
}

.spec-check {
    color: #0dcaf0;
    margin-right: 8px;
    font-size: 0.8rem;
}

.accessory-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.accessory-actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 0.9rem;
}

.combo-section {
    background: linear-gradient(135deg, #fff8e1, #fff3cd);
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 15px;
}

.combo-header {
    text-align: center;
    margin-bottom: 40px;
}

.combo-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    border: 2px dashed #ffc107;
}

.combo-title {
    color: #0dcaf0;
    margin-bottom: 15px;
}

.combo-products {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.combo-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.combo-save {
    background: #dc3545;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header .subtitle {
    color: #0dcaf0;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-header h2 {
    color: #333;
    margin-bottom: 15px;
}

/* Blog Page Specific Styles */
.blog-page {
    padding: 50px 0;
}

.blog-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('image/blog-banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 50px;
}

.blog-search {
    max-width: 600px;
    margin: 30px auto;
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 15px 50px 15px 20px;
    border-radius: 50px;
    border: none;
    width: 100%;
}

.search-box button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #0dcaf0;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
}

.blog-meta i {
    color: #0dcaf0;
    margin-right: 5px;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.blog-tag {
    padding: 5px 15px;
    background: #e3f2fd;
    color: #0d6efd;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
}

.read-more {
    color: #0dcaf0;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
}

.sidebar-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.sidebar-title {
    color: #0dcaf0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0dcaf0;
}

.categories-list {
    list-style: none;
    padding: 0;
}

.categories-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dee2e6;
}

.categories-list a {
    text-decoration: none;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.categories-list a:hover {
    color: #0dcaf0;
}

.categories-count {
    background: #0dcaf0;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.recent-posts .post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
}

.post-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content h5 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.post-content .post-date {
    font-size: 0.8rem;
    color: #666;
}

.newsletter-box {
    background: linear-gradient(135deg, #0dcaf0, #0d6efd);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.newsletter-box input {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: none;
    margin: 15px 0;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #dc3545;
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: bold;
    z-index: 1;
}

/* Contact Page Specific Styles */
.contact-page {
    padding: 50px 0;
}

.contact-hero {
    background: linear-gradient(135deg, #0dcaf0, #0d6efd);
    color: white;
    padding: 60px 0;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 50px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #0dcaf0;
}

.contact-form-section {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 15px;
    margin-bottom: 50px;
}

.contact-form-section .form-control,
.contact-form-section .form-select {
    padding: 12px 15px;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    margin-bottom: 20px;
}

.form-control:focus,
.form-select:focus {
    border-color: #0dcaf0;
    box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25);
}

.submit-btn {
    background: #0dcaf0;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #0d6efd;
    transform: translateY(-3px);
}

.map-section {
    margin-bottom: 50px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-section {
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.store-hours {
    background: #0dcaf0;
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.hours-table {
    width: 100%;
    margin-top: 20px;
}

.hours-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-table td {
    padding: 10px 0;
}

.hours-table td:last-child {
    text-align: right;
    font-weight: bold;
}

.social-contact {
    text-align: center;
    padding: 40px 0;
}

.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-icons-large a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0dcaf0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons-large a:hover {
    background: #0dcaf0;
    color: white;
    transform: translateY(-5px);
}

/* Google Ads Styles */
.google-ad-container {
    margin: 30px 0;
    text-align: center;
    border: 1px dashed #ddd;
    border-radius: 10px;
    padding: 20px;
    background: #f8f9fa;
}

.ad-label {
    display: inline-block;
    background: #4285f4;
    color: white !important;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.ad-placeholder {
    width: 100%;
    min-height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    color: white;
    font-weight: bold;
}

.ad-placeholder.large {
    min-height: 250px;
}

.ad-placeholder.medium {
    min-height: 180px;
}

.ad-placeholder.small {
    min-height: 100px;
}

.ad-placeholder.sidebar {
    height: 250px;
    max-width: 300px;
    color: white;
    font-weight: bold;
}

.ad-placeholder.rectangle {
    height: 250px;
    color: white;
    font-weight: bold;
}

.ad-placeholder.leaderboard {
    height: 200px;
    color: white;
    font-weight: bold;
}

.ad-placeholder.skyscraper {
    height: 600px;
}

.sticky-ad-sidebar {
    position: sticky;
    top: 100px;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .trending-products .slider-list {
        grid-auto-columns: calc((100% / 3) - 0px);
    }

    .trending-products .product-card button {
        font-size: 10px;
    }

    .productpage .product-card button {
        font-size: 10px;
    }

    .reel-section .reel {
        grid-auto-columns: calc((100% / 2) - 12px);
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .ad-placeholder.rectangle {
        height: 150px;
    }

    .ad-placeholder.sidebar {
        height: 200px;
        max-width: 100%;
    }

    .sticky-ad-sidebar {
        position: relative;
        top: 0;
    }

    .ad-placeholder.skyscraper {
        height: 300px;
    }
}

@media screen and (max-width: 767px) {
    .trending-products .slider-list {
        gap: 20px;
        grid-auto-columns: calc((100% / 2) - 0px);
    }

    .reel-section .reel {
        grid-auto-columns: 100%;
    }

    .blog-section .slider-list {
        gap: 30px;
        grid-auto-columns: 100%;
        scroll-padding-left: 20px;
    }

    .accessories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .accessory-img-container {
        height: 180px;
    }

    .accessory-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-image {
        height: 200px;
    }

    .contact-form-section {
        padding: 30px;
    }

    .faq-section {
        padding: 30px;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .ad-sidebar {
        position: static;
        margin: 20px 0;
    }
}

@media screen and (max-width: 576px) {
    .accessory-categories-grid {
        grid-template-columns: 1fr;
    }

    .accessories-grid {
        grid-template-columns: 1fr;
    }

    .accessory-actions {
        flex-direction: column;
    }
}

@media screen and (max-width: 500px) {
    .header {
        display: flex;
        flex-wrap: wrap;
    }

    .header .column {
        margin-block: 20px;
    }

    .header .header-img img {
        width: 70px;
        height: 70px;
    }

    .header .header-form {
        padding: 15px;
        border-radius: 10px;
        border: 1px solid rgb(226, 225, 225);
    }

    .header .header-form select,
    .header .header-form input,
    .header .header-form button {
        width: 95px;
        background: white;
        border: none;
        outline: none;
    }

    .header .header-form button:hover {
        color: rgb(0, 217, 255);
    }

    .top-moblie-section .table.mobile {
        overflow-x: auto;
    }

    .top-moblie-section .table .table-scroll-information {
        display: block;
    }

    .top-moblie-section .table.mobile table {
        width: 600px !important;
    }

    .trending-products .slider-list {
        gap: 25px;
        scroll-padding-left: 20px;
        grid-auto-columns: 100%;
    }

    .testimonial-section .slider-list {
        gap: 25px;
        scroll-padding-left: 20px;
        grid-auto-columns: 100%;
    }

    .trending-products .slider-list {
        gap: 25px;
        scroll-padding-left: 20px;
        grid-auto-columns: 100%;
    }
}

/* For horizontal scrolling on reels on large screens */
@media screen and (max-width: 1204px) {
    .reel {
        overflow-x: auto;
    }
}