/* ===================================
   ASTRO SHOP - HERO SLIDER
=================================== */
.shop-hero-slider {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.shop-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.shop-slide.active {
    opacity: 1;
}

.shop-slide-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.shop-slide-content h1 {
    font-family: 'SF Fourche', sans-serif;
    font-size: 42px;
    color: #45d8ff;
    text-shadow: 0 0 20px #2fd7e4;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.shop-slide-content p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
}

.shop-hero-btn {
    display: inline-block;
    padding: 10px 30px;
    background: transparent;
    border: 1px solid #45d8ff;
    color: #45d8ff;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
}

.shop-hero-btn:hover {
    background: #45d8ff;
    color: #000;
    text-decoration: none;
}

.shop-slider-prev,
.shop-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 38px;
    height: 38px;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

.shop-slider-prev { left: 15px; }
.shop-slider-next { right: 15px; }

.shop-slider-prev:hover,
.shop-slider-next:hover {
    background: rgba(69,216,255,0.3);
}

.shop-slider-dots {
    position: absolute;
    bottom: 14px;
    width: 100%;
    text-align: center;
}

.shop-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    margin: 0 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.shop-dot.active { background: #45d8ff; }

/* ===================================
   BREADCRUMB
=================================== */
.shop-breadcrumb {
    background: rgba(0,0,0,0.3);
    padding: 8px 0;
    font-size: 13px;
    color: #aaa;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.shop-breadcrumb ul.inline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.shop-breadcrumb ul.inline li a {
    color: #45d8ff;
    text-decoration: none;
}

.shop-breadcrumb ul.inline li {
    color: #aaa;
}

/* ===================================
   MAIN CONTENT AREA
=================================== */
#shop-content {
    background: #f8f9fa;
    min-height: 400px;
}

/* ===================================
   SIDEBAR
=================================== */
.shop-sidebar {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.shop-sidebar-title {
    background: #1a3a5c;
    color: #45d8ff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 16px;
}

.shop-cat-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.shop-cat-list li a {
    display: block;
    padding: 9px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}

.shop-cat-list li a:hover,
.shop-cat-list li.active a {
    color: #1a3a5c;
    border-left-color: #45d8ff;
    background: #f0faff;
    text-decoration: none;
}

/* ===================================
   SECTION HEADING
=================================== */
.shop-section-heading {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.shop-section-heading h2 {
    font-size: 20px;
    color: #1a3a5c;
    margin: 0;
}

.shop-section-heading span {
    font-size: 13px;
    color: #aaa;
}

/* ===================================
   PRODUCT CARD
=================================== */
.shop-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.shop-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,38,56,0.15);
    border-color: #002638;
}

.shop-product-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none !important;
    color: inherit !important;
}

.shop-product-img {
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.shop-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.4s ease;
}

.shop-product-card:hover .shop-product-img img {
    transform: scale(1.08);
}

.shop-product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #002638;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.shop-product-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shop-product-cats {
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.shop-cat-pill {
    font-size: 10px;
    color: #002638;
    background: #e8f4fd;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.shop-product-name {
    font-size: 15px;
    font-weight: 700;
    color: #002638;
    margin: 0 0 8px 0;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s;
}

.shop-product-card:hover .shop-product-name {
    color: #1a5276;
}

.shop-product-desc {
    font-size: 13px;
    color: #777;
    margin-bottom: 14px;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    flex: 1;
}

.shop-product-footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.shop-view-btn {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    background: #002638;
    color: #fff;
    border-radius: 8px;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.shop-product-card:hover .shop-view-btn {
    background: #1a5276;
    box-shadow: 0 4px 12px rgba(0,38,56,0.25);
}

/* ===================================
   LATEST PRODUCTS SLIDER
=================================== */
.shop-recent-section {
    background: #fff;
    border-radius: 10px;
    padding: 20px 30px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
}

.shop-recent-slider {
    margin: 0 10px;
}

.shop-recent-slider .slick-slide {
    padding: 0 8px;
}

.shop-recent-slide a {
    display: block;
    text-decoration: none;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ececec;
    transition: all 0.25s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.shop-recent-slide a:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-3px);
    border-color: #45d8ff;
    text-decoration: none;
}

.shop-recent-img {
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: #f5f5f5;
}

.shop-recent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.shop-recent-slide a:hover .shop-recent-img img {
    transform: scale(1.06);
}

.shop-recent-name {
    font-size: 12px;
    color: #222;
    font-weight: 600;
    padding: 8px 8px 2px;
    line-height: 1.4;
}

.shop-recent-price {
    font-size: 12px;
    color: #e74c3c;
    font-weight: 700;
    padding: 0 8px 10px;
}

.shop-recent-slider .slick-prev,
.shop-recent-slider .slick-next {
    z-index: 5;
    width: 30px;
    height: 30px;
    background: #1a3a5c;
    border-radius: 50%;
}

.shop-recent-slider .slick-prev:before,
.shop-recent-slider .slick-next:before {
    color: #45d8ff;
    font-size: 14px;
    opacity: 1;
    font-family: 'slick';
}
.shop-recent-slider .slick-prev:before {
    content: '\2190';
}
.shop-recent-slider .slick-next:before {
    content: '\2192';
}

.shop-recent-slider .slick-prev { left: -18px; }
.shop-recent-slider .slick-next { right: -18px; }

.shop-recent-slider .slick-prev:hover,
.shop-recent-slider .slick-next:hover {
    background: #45d8ff;
}

.shop-recent-slider .slick-prev:hover:before,
.shop-recent-slider .slick-next:hover:before {
    color: #000;
}

/* ===================================
   FEATURED SECTION
=================================== */
.shop-featured-section {
    background: #071422;
    padding: 40px 0;
}

.shop-section-header {
    text-align: center;
    margin-bottom: 30px;
}

.shop-section-header h2 {
    font-family: 'SF Fourche', sans-serif;
    font-size: 26px;
    color: #45d8ff;
    text-shadow: 0 0 15px #2fd7e4;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.shop-section-line {
    width: 60px;
    height: 2px;
    background: #45d8ff;
    margin: 0 auto;
    box-shadow: 0 0 10px #2fd7e4;
}

/* ===================================
   SUPPORT US BANNER
=================================== */
.shop-support-banner {
    position: relative;
    background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 100%);
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;
}

.shop-support-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/public/frontend/images/background_footer_bottom.jpg') center/cover no-repeat;
    opacity: 0.1;
}

.shop-support-content {
    position: relative;
    z-index: 1;
}

.shop-support-content h2 {
    font-size: 22px;
    color: #fff;
    max-width: 700px;
    margin: 0 auto 14px;
    line-height: 1.5;
}

.shop-support-content p {
    color: #aaa;
    font-size: 15px;
    margin-bottom: 24px;
}

.shop-support-btn {
    display: inline-block;
    padding: 12px 36px;
    background: #45d8ff;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.2s;
}

.shop-support-btn:hover {
    background: #fff;
    color: #1a3a5c;
    text-decoration: none;
}

/* ===================================
   USEFUL LINKS
=================================== */
.shop-useful-links {
    background: #0a1628;
    padding: 30px 0;
    border-top: 1px solid rgba(69,216,255,0.1);
}

.shop-link-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(69,216,255,0.15);
    border-radius: 8px;
    padding: 16px 20px;
    text-decoration: none;
    transition: all 0.2s;
    color: #ccc;
}

.shop-link-card:hover {
    background: rgba(69,216,255,0.08);
    border-color: #45d8ff;
    color: #45d8ff;
    text-decoration: none;
}

.shop-link-icon {
    font-size: 22px;
}

.shop-link-label {
    font-size: 14px;
    font-weight: 500;
}
