/*=============================================
    SKYTECH MAIN STYLES
=============================================*/
:root {
    --skytech-primary: #1a1a1a;
    --skytech-secondary: #ff6600;
    --skytech-secondary-hover: #e65c00;
    --skytech-text: #333333;
    --skytech-text-light: #777777;
    --skytech-bg: #ffffff;
    --skytech-bg-gray: #f5f5f5;
    --skytech-bg-dark: #1a1a1a;
    --skytech-border: #e5e5e5;
    --skytech-border-light: #f0f0f0;
    --skytech-success: #46b450;
    --skytech-danger: #dc3232;
    --skytech-warning: #f0ad4e;
    --skytech-font: 'Poppins', sans-serif;
    --skytech-transition: all 0.3s ease;
    --skytech-shadow: 0 2px 10px rgba(0,0,0,0.08);
    --skytech-shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
    --skytech-radius: 8px;
    --skytech-radius-sm: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--skytech-font);
    font-size: 14px;
    line-height: 1.6;
    color: var(--skytech-text);
    background: var(--skytech-bg);
    overflow-x: hidden;
}

a {
    color: var(--skytech-text);
    text-decoration: none;
    transition: var(--skytech-transition);
}

a:hover {
    color: var(--skytech-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/*=============================================
    HEADER
=============================================*/
.skytech-header {
    position: relative;
    z-index: 1000;
}

/* Top Bar */
.skytech-header-top {
    background: var(--skytech-primary);
    color: #fff;
    font-size: 12px;
    padding: 6px 0;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top-left span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.header-top-left i {
    color: var(--skytech-secondary);
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-top-right a {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.header-top-right a:hover {
    color: var(--skytech-secondary);
}

/* Main Header */
.skytech-header-main {
    background: var(--skytech-primary);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-main-inner {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    max-height: 50px;
    width: auto;
}

.skytech-logo-text {
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.logo-sky {
    color: #fff;
}

.logo-tech {
    color: var(--skytech-secondary);
}

.header-search {
    flex: 1;
    max-width: 500px;
}

.skytech-search-form .search-form-inner {
    display: flex;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--skytech-transition);
}

.skytech-search-form .search-form-inner:focus-within {
    border-color: var(--skytech-secondary);
}

.skytech-search-form .search-input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    font-family: var(--skytech-font);
    outline: none;
    background: transparent;
}

.skytech-search-form .search-input::placeholder {
    color: #999;
}

.skytech-search-form .search-submit {
    background: var(--skytech-secondary);
    color: #fff;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    font-size: 16px;
    transition: var(--skytech-transition);
}

.skytech-search-form .search-submit:hover {
    background: var(--skytech-secondary-hover);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-action-btn {
    color: #fff;
    font-size: 20px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--skytech-transition);
}

.header-action-btn:hover {
    color: var(--skytech-secondary);
}

.action-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--skytech-secondary);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-cart-btn .cart-amount {
    font-size: 14px;
    font-weight: 600;
    color: var(--skytech-secondary);
}

.header-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Navigation Bar */
.skytech-header-nav {
    background: #fff;
    border-bottom: 1px solid var(--skytech-border);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-nav-inner {
    display: flex;
    align-items: center;
}

.skytech-category-menu-trigger {
    position: relative;
}

.category-menu-btn {
    background: var(--skytech-primary);
    color: #fff;
    border: none;
    padding: 14px 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--skytech-font);
    transition: var(--skytech-transition);
}

.category-menu-btn:hover {
    background: #2a2a2a;
}

.skytech-category-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 270px;
    background: #fff;
    box-shadow: var(--skytech-shadow);
    border: 1px solid var(--skytech-border);
    border-top: 2px solid var(--skytech-secondary);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.skytech-category-menu-trigger:hover .skytech-category-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-menu {
    list-style: none;
    padding: 5px 0;
}

.category-menu > li {
    position: relative;
}

.category-menu > li > a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--skytech-text);
    transition: var(--skytech-transition);
    border-bottom: 1px solid var(--skytech-border-light);
}

.category-menu > li > a:hover {
    background: var(--skytech-bg-gray);
    color: var(--skytech-secondary);
    padding-left: 25px;
}

/* Category Submenu – Desktop */
.category-menu .menu-item-has-children {
    position: relative;
}

.category-menu .menu-item-has-children > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-arrow {
    font-size: 9px;
    margin-left: 6px;
    transition: var(--skytech-transition);
    opacity: 0.5;
}

.menu-item-has-children:hover > a .category-arrow {
    opacity: 1;
    transform: rotate(90deg);
}

.skytech-category-dropdown {
    width: 280px;
    overflow: visible;
}

.category-menu .category-menu,
.category-menu .sub-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    width: 280px;
    min-width: 280px;
    max-width: 320px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--skytech-border);
    border-top: 2px solid var(--skytech-secondary);
    z-index: 9999;
    padding: 8px 0;
    list-style: none;
    margin: 0;
    box-sizing: border-box;
    overflow: visible;
}

.menu-item-has-children:hover > .category-menu,
.menu-item-has-children:hover > .sub-menu {
    display: block;
}

.category-menu .category-menu .category-menu,
.category-menu .sub-menu .sub-menu,
.category-menu .category-menu .sub-menu,
.category-menu .sub-menu .category-menu {
    top: -2px;
    width: 280px;
    min-width: 280px;
}

.category-menu .sub-menu > li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.category-menu .sub-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 40px;
    padding: 9px 18px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.4;
    color: var(--skytech-text-dark);
    font-size: 14px;
    text-decoration: none;
    transition: var(--skytech-transition);
}

.category-menu .sub-menu > li > a:hover {
    color: var(--skytech-secondary);
    background: var(--skytech-bg-gray);
}

/* Primary Navigation */
.skytech-primary-nav {
    flex: 1;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
}

.primary-menu > li {
    position: relative;
}

.primary-menu > li > a {
    display: block;
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--skytech-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--skytech-transition);
}

.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a {
    color: var(--skytech-secondary);
}

.header-nav-hotline {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--skytech-secondary);
    white-space: nowrap;
}

.header-nav-hotline i {
    font-size: 18px;
}

.header-nav-hotline a {
    color: var(--skytech-secondary);
    font-weight: 600;
}

/*=============================================
    MOBILE MENU
=============================================*/
.skytech-mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--skytech-transition);
}

.skytech-mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.skytech-mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 10000;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.skytech-mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--skytech-primary);
    color: #fff;
}

.mobile-menu-title {
    font-size: 16px;
    font-weight: 600;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu-search {
    padding: 15px;
    border-bottom: 1px solid var(--skytech-border);
}

.mobile-menu-search form {
    display: flex;
    border: 1px solid var(--skytech-border);
    border-radius: var(--skytech-radius-sm);
    overflow: hidden;
}

.mobile-menu-search input {
    flex: 1;
    border: none;
    padding: 10px 12px;
    font-size: 13px;
    font-family: var(--skytech-font);
    outline: none;
}

.mobile-menu-search button {
    background: var(--skytech-secondary);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.mobile-nav {
    padding: 10px 0;
}

.mobile-menu-list {
    list-style: none;
}

.mobile-menu-list > li > a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--skytech-text);
    border-bottom: 1px solid var(--skytech-border-light);
}

.mobile-menu-list > li > a:hover {
    color: var(--skytech-secondary);
    background: var(--skytech-bg-gray);
}

.mobile-menu-extra {
    padding: 15px 20px;
    border-top: 1px solid var(--skytech-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-extra-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--skytech-bg-gray);
    border-radius: var(--skytech-radius-sm);
    font-size: 13px;
    font-weight: 500;
}

/*=============================================
    CART SIDEBAR
=============================================*/
.skytech-cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100%;
    background: #fff;
    z-index: 10000;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.skytech-cart-sidebar.active {
    right: 0;
}

.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--skytech-primary);
    color: #fff;
}

.cart-sidebar-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.cart-sidebar-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.cart-sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-sidebar-items {
    list-style: none;
}

.cart-sidebar-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--skytech-border-light);
    align-items: center;
}

.cart-item-image {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border: 1px solid var(--skytech-border);
    border-radius: var(--skytech-radius-sm);
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details a {
    font-size: 13px;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.cart-item-qty {
    font-size: 12px;
    color: var(--skytech-text-light);
}

.cart-item-remove {
    color: var(--skytech-danger);
    font-size: 18px;
}

.cart-sidebar-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 16px;
    border-top: 1px solid var(--skytech-border);
}

.cart-sidebar-buttons {
    display: flex;
    gap: 10px;
}

.cart-sidebar-buttons .button {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: var(--skytech-radius-sm);
    font-weight: 600;
    font-size: 13px;
}

.btn-view-cart {
    background: var(--skytech-bg-gray);
    color: var(--skytech-text);
    border: 1px solid var(--skytech-border);
}

.btn-checkout {
    background: var(--skytech-secondary);
    color: #fff;
}

.cart-sidebar-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-sidebar-empty i {
    font-size: 48px;
    color: var(--skytech-border);
    margin-bottom: 15px;
}

.cart-item-variation {
    display: block;
    font-size: 11px;
    color: var(--skytech-text-light);
    margin-bottom: 4px;
}

.cart-item-variation small {
    display: block;
}

.cart-item-qty-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
}

.mini-cart-qty-btn {
    width: 26px;
    height: 26px;
    border: 1px solid var(--skytech-border);
    background: var(--skytech-bg-gray);
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--skytech-text);
    transition: var(--skytech-transition);
}

.mini-cart-qty-btn:hover {
    background: var(--skytech-secondary);
    color: #fff;
    border-color: var(--skytech-secondary);
}

.cart-item-qty-display {
    font-size: 13px;
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}

.cart-item-subtotal {
    font-size: 13px;
    font-weight: 600;
    color: var(--skytech-secondary);
}

.cart-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--skytech-transition);
}

.cart-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/*=============================================
    HERO SLIDER
=============================================*/
.skytech-hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.hero-content .hero-subtitle,
.hero-content .hero-btn {
    text-shadow: none;
}

.hero-subtitle {
    display: inline-block;
    background: var(--skytech-secondary);
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-desc {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero-btn {
    display: inline-block;
    background: var(--skytech-secondary);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--skytech-transition);
}

.hero-btn:hover {
    background: var(--skytech-secondary-hover);
    color: #fff;
    transform: translateY(-2px);
}

.heroSwiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: var(--skytech-secondary);
    opacity: 1;
}

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: #fff;
    background: rgba(0,0,0,0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--skytech-transition);
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    background: var(--skytech-secondary);
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
    font-size: 18px;
}

/*=============================================
    CATEGORY ICONS
=============================================*/
.skytech-category-icons {
    padding: 30px 0;
    background: var(--skytech-bg);
}

.category-icons-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}

.category-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 10px;
    background: var(--skytech-bg);
    border: 1px solid var(--skytech-border);
    border-radius: var(--skytech-radius);
    transition: var(--skytech-transition);
    text-align: center;
}

.category-icon-item:hover {
    border-color: var(--skytech-secondary);
    box-shadow: var(--skytech-shadow);
    transform: translateY(-3px);
}

.cat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--skytech-bg-gray);
    border-radius: 50%;
    font-size: 24px;
    color: var(--skytech-secondary);
    transition: var(--skytech-transition);
}

.category-icon-item:hover .cat-icon {
    background: var(--skytech-secondary);
    color: #fff;
}

.cat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--skytech-text);
}

/*=============================================
    PROMO BANNERS
=============================================*/
.skytech-promo-banners {
    padding: 0 0 30px;
}

.promo-banners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.promo-banner-main .promo-banner {
    height: 100%;
    min-height: 300px;
}

.promo-banners-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.promo-banner {
    background-size: cover;
    background-position: center;
    border-radius: var(--skytech-radius);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, transparent 100%);
}

.promo-banner-sm {
    min-height: 140px;
}

.promo-banner-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: #fff;
}

.promo-banner-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.promo-banner-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.promo-banner-content p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 12px;
}

.promo-btn {
    display: inline-block;
    background: var(--skytech-secondary);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--skytech-transition);
}

.promo-btn-sm {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
    transition: var(--skytech-transition);
}

.promo-btn:hover,
.promo-btn-sm:hover {
    background: var(--skytech-secondary);
    color: #fff;
}

/*=============================================
    SECTION HEADERS
=============================================*/
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--skytech-border);
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--skytech-primary);
    position: relative;
}

.section-subtitle {
    font-size: 13px;
    color: var(--skytech-text-light);
    margin-top: 5px;
}

.section-view-all {
    font-size: 13px;
    font-weight: 500;
    color: var(--skytech-secondary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.section-view-all:hover {
    gap: 8px;
}

/*=============================================
    PRODUCT GRID
=============================================*/
.products-grid {
    display: grid;
    gap: 20px;
}

.products-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.products-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.products-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.products-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.products-grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

/* Product Card */
.product {
    background: #fff;
    border: 1px solid var(--skytech-border);
    border-radius: var(--skytech-radius);
    overflow: hidden;
    transition: var(--skytech-transition);
    position: relative;
}

.product:hover {
    box-shadow: var(--skytech-shadow-hover);
    border-color: transparent;
}

.product-thumbnail-wrap {
    position: relative;
    overflow: hidden;
    background: var(--skytech-bg-gray);
    min-height: 200px;
}

.product-thumb-link {
    display: block;
}

.product-thumbnail-wrap img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    transition: transform 0.5s ease;
    display: block;
}

.product-thumbnail-wrap img.placeholder-image {
    opacity: 0.6;
    padding: 20px;
    background: var(--skytech-bg-gray);
}

.product-thumbnail-wrap:empty,
.product-thumb-link:empty {
    min-height: 200px;
    background: var(--skytech-bg-gray);
}

.product:hover .product-thumbnail-wrap img {
    transform: scale(1.05);
}

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.discount-badge {
    background: var(--skytech-danger);
    color: #fff;
}

.soldout-badge {
    background: var(--skytech-text);
    color: #fff;
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--skytech-transition);
}

.product:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: var(--skytech-text);
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: var(--skytech-transition);
}

.action-btn:hover {
    background: var(--skytech-secondary);
    color: #fff;
}

.action-btn.active {
    background: var(--skytech-danger);
    color: #fff;
}

.product-title {
    padding: 10px 12px 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.product-title a {
    color: var(--skytech-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title a:hover {
    color: var(--skytech-secondary);
}

.product-colors {
    padding: 5px 12px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px var(--skytech-border);
    cursor: pointer;
    transition: var(--skytech-transition);
}

.color-dot:hover {
    transform: scale(1.2);
}

.color-more {
    font-size: 10px;
    color: var(--skytech-text-light);
}

.product-price {
    padding: 5px 12px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.product-price .price {
    font-size: 16px;
    font-weight: 700;
    color: var(--skytech-danger);
}

.product-price .price del {
    font-size: 13px;
    color: var(--skytech-text-light);
    font-weight: 400;
}

.product-price .price ins {
    text-decoration: none;
}

.product-add-to-cart {
    padding: 0 12px 12px;
}

.product-add-to-cart .button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    background: var(--skytech-primary);
    color: #fff;
    border: none;
    border-radius: var(--skytech-radius-sm);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--skytech-transition);
    font-family: var(--skytech-font);
}

.product-add-to-cart .button:hover {
    background: var(--skytech-secondary);
}

.product-add-to-cart .added_to_cart {
    display: none;
}

/*=============================================
    FLASH SALE
=============================================*/
.skytech-flash-sale {
    padding: 40px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
}

.section-title-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.flash-countdown {
    display: flex;
    align-items: center;
    gap: 5px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--skytech-primary);
    color: #fff;
    padding: 8px 12px;
    border-radius: var(--skytech-radius-sm);
    min-width: 50px;
}

.countdown-item span:first-child {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.countdown-item span:last-child {
    font-size: 9px;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 2px;
    opacity: 0.8;
}

.countdown-sep {
    font-size: 20px;
    font-weight: 700;
    color: var(--skytech-primary);
}

/*=============================================
    FEATURED / NEW / BEST / ACCESSORIES
=============================================*/
.skytech-featured-products,
.skytech-new-arrivals,
.skytech-best-selling,
.skytech-accessories {
    padding: 40px 0;
}

.skytech-new-arrivals {
    background: var(--skytech-bg-gray);
}

.skytech-best-selling {
    background: linear-gradient(135deg, #f0f8ff 0%, #fff 100%);
}

/*=============================================
    BRANDS
=============================================*/
.skytech-brands {
    padding: 40px 0;
    background: #fff;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 1px solid var(--skytech-border);
    border-radius: var(--skytech-radius);
    transition: var(--skytech-transition);
    min-height: 80px;
}

.brand-item:hover {
    border-color: var(--skytech-secondary);
    box-shadow: var(--skytech-shadow);
}

.brand-logo span {
    font-size: 14px;
    font-weight: 600;
    color: var(--skytech-text-light);
}

.brand-item:hover .brand-logo span {
    color: var(--skytech-secondary);
}

/*=============================================
    FLASH SALE PRODUCTS
=============================================*/
.flash-sale-products .products-grid {
    margin-top: 10px;
}

/*=============================================
    SHOP PAGE
=============================================*/
.skytech-shop-page {
    padding-bottom: 50px;
}

.page-header {
    background: var(--skytech-bg-gray);
    padding: 25px 0;
    margin-bottom: 30px;
}

.page-header-content h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.shop-content-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
}

.shop-sidebar {
    position: relative;
}

.sidebar-close {
    display: none;
}

.sidebar-inner .widget {
    margin-bottom: 25px;
    background: #fff;
    border: 1px solid var(--skytech-border);
    border-radius: var(--skytech-radius);
    padding: 20px;
}

.widget-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--skytech-primary);
}

.widget_product_categories ul {
    list-style: none;
}

.widget_product_categories ul li {
    border-bottom: 1px solid var(--skytech-border-light);
}

.widget_product_categories ul li a {
    display: block;
    padding: 8px 0;
    font-size: 13px;
    color: var(--skytech-text);
}

.widget_product_categories ul li a:hover {
    color: var(--skytech-secondary);
    padding-left: 5px;
}

.widget_product_categories .count {
    float: right;
    color: var(--skytech-text-light);
    font-size: 12px;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #fff;
    border: 1px solid var(--skytech-border);
    border-radius: var(--skytech-radius);
    margin-bottom: 20px;
}

.mobile-filter-btn {
    display: none;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background: var(--skytech-primary);
    color: #fff;
    border: none;
    border-radius: var(--skytech-radius-sm);
    font-size: 13px;
    cursor: pointer;
    font-family: var(--skytech-font);
}

.shop-toolbar-left {
    font-size: 13px;
    color: var(--skytech-text-light);
}

.shop-toolbar-right select {
    padding: 8px 12px;
    border: 1px solid var(--skytech-border);
    border-radius: var(--skytech-radius-sm);
    font-size: 13px;
    font-family: var(--skytech-font);
    outline: none;
    cursor: pointer;
}

/* Pagination */
.woocommerce-pagination {
    margin-top: 30px;
    text-align: center;
}

.woocommerce-pagination ul.page-numbers {
    display: inline-flex;
    gap: 5px;
    list-style: none;
}

.woocommerce-pagination .page-numbers li span,
.woocommerce-pagination .page-numbers li a {
    display: block;
    padding: 8px 14px;
    border: 1px solid var(--skytech-border);
    border-radius: var(--skytech-radius-sm);
    font-size: 13px;
    transition: var(--skytech-transition);
}

.woocommerce-pagination .page-numbers li span.current {
    background: var(--skytech-secondary);
    color: #fff;
    border-color: var(--skytech-secondary);
}

.woocommerce-pagination .page-numbers li a:hover {
    border-color: var(--skytech-secondary);
    color: var(--skytech-secondary);
}

/*=============================================
    SINGLE PRODUCT - Compact Professional
=============================================*/
.skytech-single-product-page {
    padding: 24px 0 60px;
}

.skytech-single-product-page .product-container.container {
    max-width: 1180px;
}

.product-breadcrumb-area {
    margin-bottom: 20px;
}

.product-breadcrumb-area .woocommerce-breadcrumb {
    font-size: 12px;
    color: var(--skytech-text-light);
}

.product-breadcrumb-area .woocommerce-breadcrumb a {
    color: var(--skytech-text-light);
}

.product-breadcrumb-area .woocommerce-breadcrumb a:hover {
    color: var(--skytech-secondary);
}

/* ========== TWO-COLUMN LAYOUT ========== */
.product-detail-layout {
    display: grid;
    grid-template-columns: 46% 1fr;
    gap: 32px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.product-gallery-col {
    min-width: 0;
    max-width: 100%;
    width: 100%;
}

.product-summary-col {
    min-width: 0;
    max-width: 520px;
    width: 100%;
}

/* ========== GALLERY ========== */
.product-gallery {
    max-width: 100%;
}

.product-gallery-main {
    position: relative;
    border: 1px solid var(--skytech-border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 480px;
    background: #fff;
}

.product-gallery-zoom-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: var(--skytech-primary);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--skytech-transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    opacity: 0;
}

.product-gallery-main:hover .product-gallery-zoom-btn {
    opacity: 1;
}

.product-gallery-zoom-btn:hover {
    background: var(--skytech-secondary);
    color: #fff;
}

.product-gallery-main .swiper {
    width: 100%;
    height: 100%;
}

.product-gallery-main .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product-gallery-main .swiper-slide img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: contain;
    display: block;
}

.product-gallery-main .swiper-button-next,
.product-gallery-main .swiper-button-prev {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: var(--skytech-primary);
    font-size: 12px;
}

.product-gallery-main .swiper-button-next::after,
.product-gallery-main .swiper-button-prev::after {
    font-size: 12px;
    font-weight: 700;
}

.product-gallery-main .swiper-button-next:hover,
.product-gallery-main .swiper-button-prev:hover {
    background: var(--skytech-secondary);
    color: #fff;
}

.product-gallery-thumbs {
    max-width: 100%;
    padding: 0 2px;
}

.product-gallery-thumbs .swiper-slide {
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--skytech-transition);
    max-width: 100%;
    height: auto;
}

.product-gallery-thumbs .swiper-slide img {
    width: 100%;
    height: auto;
    max-height: 70px;
    object-fit: cover;
    display: block;
}

.product-gallery-thumbs .swiper-slide-thumb-active {
    border-color: var(--skytech-secondary);
    opacity: 1;
}

.product-gallery-placeholder img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    display: block;
}

/* ========== SUMMARY COLUMN ========== */
.product-summary {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
}

/* Brand label */
.product-brand {
    margin-bottom: 6px;
}

.product-brand a {
    display: inline-block;
    padding: 2px 10px;
    background: var(--skytech-secondary);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: var(--skytech-transition);
}

.product-brand a:hover {
    background: var(--skytech-primary);
}

/* Title */
.product-summary .product-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--skytech-primary);
    margin-bottom: 10px;
    padding: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
    line-height: 1.3;
}

/* Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    max-width: 100%;
}

.product-rating .star-rating {
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1;
    font-size: 13px;
    width: 5.4em;
    font-family: star;
    color: #f5a623;
}

.product-rating .star-rating::before {
    content: '\73\73\73\73\73';
    color: #ddd;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
}

.product-rating .star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}

.product-rating .star-rating span::before {
    content: '\53\53\53\53\53';
    top: 0;
    position: absolute;
    left: 0;
}

.rating-count {
    font-size: 12px;
    color: var(--skytech-text-light);
}

/* Price */
.product-summary .product-price {
    padding: 12px 0;
    margin-bottom: 12px;
    max-width: 100%;
}

.product-summary .product-price .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--skytech-secondary);
    letter-spacing: -0.3px;
}

.product-summary .product-price .price del {
    font-size: 16px;
    color: var(--skytech-text-light);
    font-weight: 400;
    margin-right: 8px;
}

.product-summary .product-price .price ins {
    text-decoration: none;
}

/* Short description */
.product-short-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
    max-width: 100%;
}

/* Stock status */
.product-stock-status {
    margin-bottom: 14px;
}

.product-stock-status .stock {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
}

.product-stock-status .stock.in-stock {
    color: #2e7d32;
}

.stock-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2e7d32;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.product-stock-status .stock.out-of-stock {
    color: var(--skytech-danger);
}

/* ========== PURCHASE AREA ========== */
.product-summary form.cart {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 12px;
    max-width: 100%;
}

.product-purchase-area {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 100%;
}

/* Variations */
.variations {
    width: 100%;
    max-width: 100%;
    margin-bottom: 14px;
}

.variations td {
    padding: 5px 0;
}

.variations .label {
    padding-right: 10px;
    font-weight: 500;
    font-size: 13px;
    white-space: nowrap;
}

.variations select {
    width: 100%;
    max-width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--skytech-border);
    border-radius: 6px;
    font-size: 13px;
    font-family: var(--skytech-font);
    outline: none;
    box-sizing: border-box;
    background: #fff;
    transition: var(--skytech-transition);
}

.variations select:focus {
    border-color: var(--skytech-secondary);
    box-shadow: 0 0 0 3px rgba(255,102,0,0.1);
}

.single_variation_wrap {
    max-width: 100%;
}

.single_variation_wrap .woocommerce-variation-price {
    margin-bottom: 8px;
}

.single_variation_wrap .woocommerce-variation-price .price {
    font-size: 22px;
    font-weight: 700;
    color: var(--skytech-secondary);
}

/* Quantity */
.quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--skytech-border);
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
    width: 130px;
}

.quantity button {
    width: 38px;
    height: 42px;
    border: none;
    background: var(--skytech-bg-gray);
    font-size: 16px;
    cursor: pointer;
    transition: var(--skytech-transition);
    font-family: var(--skytech-font);
    color: var(--skytech-primary);
    font-weight: 600;
    line-height: 1;
}

.quantity button:hover {
    background: var(--skytech-secondary);
    color: #fff;
}

.quantity input {
    width: 54px;
    height: 42px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--skytech-border);
    border-right: 1px solid var(--skytech-border);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--skytech-font);
    outline: none;
    -moz-appearance: textfield;
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Add to Cart button */
.single_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 28px;
    background: var(--skytech-secondary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--skytech-transition);
    font-family: var(--skytech-font);
    white-space: nowrap;
    letter-spacing: 0.5px;
    min-width: 220px;
    max-width: 260px;
}

.single_add_to_cart_button:hover {
    background: var(--skytech-secondary-hover);
}

/* Wishlist */
.product-wishlist-action {
    margin-bottom: 16px;
}

.btn-wishlist-single {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--skytech-border);
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: var(--skytech-transition);
    font-family: var(--skytech-font);
    white-space: nowrap;
    color: var(--skytech-text-light);
}

.btn-wishlist-single:hover {
    background: var(--skytech-danger);
    color: #fff;
    border-color: var(--skytech-danger);
}

.btn-wishlist-single i {
    font-size: 13px;
}

/* Trust Badges */
.product-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
    padding: 14px;
    background: var(--skytech-bg-gray);
    border-radius: 10px;
    max-width: 100%;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.trust-badge-item i {
    font-size: 18px;
    color: var(--skytech-secondary);
}

.trust-badge-item span {
    font-size: 10px;
    color: var(--skytech-text-light);
    font-weight: 500;
    line-height: 1.3;
}

/* Product Meta */
.product-meta {
    font-size: 12px;
    color: var(--skytech-text-light);
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    padding-top: 12px;
    border-top: 1px solid var(--skytech-border);
}

.product-meta span {
    display: inline;
    margin-bottom: 2px;
}

.product-meta a {
    color: var(--skytech-text-light);
}

.product-meta a:hover {
    color: var(--skytech-secondary);
}

/* ========== TABS ========== */
.product-tabs-section {
    margin-bottom: 40px;
    max-width: 100%;
}

.tabs-nav {
    display: flex;
    border-bottom: 2px solid var(--skytech-border);
    list-style: none;
    margin-bottom: 0;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tabs-nav li {
    margin-bottom: -2px;
    flex-shrink: 0;
}

.tabs-nav li a {
    display: block;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 500;
    color: var(--skytech-text-light);
    border-bottom: 2px solid transparent;
    transition: var(--skytech-transition);
    white-space: nowrap;
    text-decoration: none;
}

.tabs-nav li.active a,
.tabs-nav li a:hover {
    color: var(--skytech-secondary);
    border-bottom-color: var(--skytech-secondary);
}

.tab-panel {
    display: none;
    padding: 24px;
    border: 1px solid var(--skytech-border);
    border-top: none;
    border-radius: 0 0 10px 10px;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
}

.tab-panel.active {
    display: block;
}

.tab-panel h2 {
    font-size: 17px;
    margin-bottom: 14px;
    color: var(--skytech-primary);
}

.tab-panel p {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

/* Attribute table in Specs tab */
.shop_attributes {
    width: 100%;
    border-collapse: collapse;
}

.shop_attributes th,
.shop_attributes td {
    padding: 8px 12px;
    border-bottom: 1px solid var(--skytech-border);
    font-size: 13px;
    text-align: left;
}

.shop_attributes th {
    font-weight: 600;
    color: var(--skytech-primary);
    width: 40%;
}

.shop_attributes td {
    color: #555;
}

.shop_attributes tr:last-child th,
.shop_attributes tr:last-child td {
    border-bottom: none;
}

/* ========== RELATED PRODUCTS ========== */
.related-products-section {
    margin-top: 8px;
}

.related-products-section .section-header {
    margin-bottom: 20px;
}

.related-products-section .section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--skytech-primary);
    position: relative;
    padding-bottom: 8px;
}

.related-products-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--skytech-secondary);
    border-radius: 2px;
}

.related-products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-summary-col {
        max-width: 100%;
    }

    .product-gallery-main {
        max-height: 420px;
    }

    .product-gallery-main .swiper-slide img {
        max-height: 420px;
    }

    .product-summary .product-title {
        font-size: 20px;
    }

    .related-products-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .skytech-single-product-page {
        padding: 16px 0 90px;
    }

    .product-gallery-main {
        max-height: 380px;
    }

    .product-gallery-main .swiper-slide img {
        max-height: 380px;
    }

    .product-summary .product-title {
        font-size: 18px;
    }

    .product-summary .product-price .price {
        font-size: 24px;
    }

    .product-purchase-area {
        flex-wrap: wrap;
    }

    .product-purchase-area .quantity {
        width: 100%;
    }

    .product-purchase-area .single_add_to_cart_button {
        width: 100%;
        max-width: 100%;
    }

    .product-trust-badges {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        padding: 10px;
    }

    .trust-badge-item i {
        font-size: 16px;
    }

    .trust-badge-item span {
        font-size: 9px;
    }

    .tabs-nav li a {
        padding: 10px 14px;
        font-size: 12px;
    }

    .tab-panel {
        padding: 16px;
    }

    .related-products-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .related-products-section .section-title {
        font-size: 18px;
    }

    .product-wishlist-action .btn-wishlist-single {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .product-gallery-main {
        max-height: 320px;
    }

    .product-gallery-main .swiper-slide img {
        max-height: 320px;
    }

    .product-summary .product-title {
        font-size: 17px;
    }

    .product-summary .product-price .price {
        font-size: 22px;
    }

    .product-trust-badges {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .trust-badge-item {
        flex-direction: row;
        justify-content: flex-start;
        gap: 8px;
    }

    .related-products-section .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .tabs-nav li a {
        padding: 8px 10px;
        font-size: 11px;
    }
}

/* Sticky mobile Add to Cart bar */
.sticky-mobile-cart {
    display: none;
}

@media (max-width: 768px) {
    .sticky-mobile-cart.is-visible {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: #fff;
        border-top: 1px solid var(--skytech-border);
        padding: 10px 16px;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        animation: slideUpBar 0.3s ease-out;
    }

    @keyframes slideUpBar {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }

    .sticky-mobile-cart-inner {
        display: flex;
        align-items: center;
        gap: 10px;
        max-width: 1180px;
        margin: 0 auto;
    }

    .sticky-mobile-cart .sticky-price {
        font-size: 18px;
        font-weight: 700;
        color: var(--skytech-secondary);
        flex-shrink: 0;
    }

    .sticky-mobile-cart .sticky-price del {
        font-size: 13px;
        color: var(--skytech-text-light);
        font-weight: 400;
        margin-right: 6px;
    }

    .sticky-mobile-cart .sticky-price ins {
        text-decoration: none;
    }

    .sticky-mobile-cart .sticky-atc {
        flex: 1;
        padding: 10px 20px;
        background: var(--skytech-secondary);
        color: #fff;
        border: none;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        cursor: pointer;
        transition: var(--skytech-transition);
        text-align: center;
        text-decoration: none;
        display: block;
        letter-spacing: 0.5px;
    }

    .sticky-mobile-cart .sticky-atc:hover {
        background: var(--skytech-secondary-hover);
    }
}

@media (min-width: 769px) {
    .sticky-mobile-cart.is-visible {
        display: none !important;
    }
}

/*=============================================
    FOOTER
=============================================*/
.skytech-footer {
    background: var(--skytech-primary);
    color: #ccc;
}

.skytech-footer-newsletter {
    background: var(--skytech-secondary);
    padding: 30px 0;
}

.newsletter-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.newsletter-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.newsletter-text p {
    font-size: 13px;
    opacity: 0.9;
}

.skytech-newsletter-form {
    display: flex;
    gap: 0;
    flex-shrink: 0;
}

.skytech-newsletter-form input {
    padding: 12px 20px;
    border: none;
    border-radius: 50px 0 0 50px;
    width: 280px;
    font-size: 13px;
    font-family: var(--skytech-font);
    outline: none;
}

.skytech-newsletter-form button {
    padding: 12px 25px;
    background: var(--skytech-primary);
    color: #fff;
    border: none;
    border-radius: 0 50px 50px 0;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--skytech-transition);
    font-family: var(--skytech-font);
}

.skytech-newsletter-form button:hover {
    background: #333;
}

.skytech-footer-main {
    padding: 50px 0 30px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-widget-col .widget-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--skytech-secondary);
}

.footer-about p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #ccc;
    font-size: 16px;
    transition: var(--skytech-transition);
}

.social-link:hover {
    background: var(--skytech-secondary);
    color: #fff;
}

.footer-widget-col ul li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-widget-col ul li a {
    display: block;
    padding: 7px 0;
    font-size: 13px;
    color: #ccc;
    transition: var(--skytech-transition);
}

.footer-widget-col ul li a:hover {
    color: var(--skytech-secondary);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-contact p i {
    color: var(--skytech-secondary);
    margin-top: 3px;
}

.footer-contact a {
    color: #ccc;
}

.footer-contact a:hover {
    color: var(--skytech-secondary);
}

.skytech-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    font-size: 12px;
    color: #999;
}

.footer-copyright a {
    color: #ccc;
}

.footer-copyright a:hover {
    color: var(--skytech-secondary);
}

/*=============================================
    SCROLL TOP
=============================================*/
.skytech-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--skytech-secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--skytech-transition);
    box-shadow: 0 2px 10px rgba(255,102,0,0.3);
}

.skytech-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.skytech-scroll-top:hover {
    background: var(--skytech-secondary-hover);
    color: #fff;
    transform: translateY(-3px);
}

/*=============================================
    QUICK VIEW MODAL
=============================================*/
.skytech-quick-view-modal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 20px;
}

.quick-view-image img {
    width: 100%;
    border-radius: var(--skytech-radius);
}

.quick-view-details h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.quick-view-details h2 a {
    color: var(--skytech-primary);
}

.quick-view-price .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--skytech-danger);
}

.quick-view-price .price del {
    font-size: 16px;
    color: var(--skytech-text-light);
}

.quick-view-price .price ins {
    text-decoration: none;
}

.quick-view-desc {
    font-size: 14px;
    color: var(--skytech-text-light);
    line-height: 1.7;
    margin: 15px 0;
}

.quick-view-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-view-actions .button {
    padding: 12px 25px;
    border-radius: var(--skytech-radius-sm);
    font-weight: 600;
    font-size: 13px;
    transition: var(--skytech-transition);
}

.quick-view-actions .add_to_cart_button {
    background: var(--skytech-secondary);
    color: #fff;
    border: none;
}

.quick-view-actions .view-details-btn {
    background: var(--skytech-primary);
    color: #fff;
    border: none;
}

.quick-view-actions .wishlist-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--skytech-border);
    border-radius: var(--skytech-radius-sm);
    font-size: 16px;
}

.quick-view-actions .wishlist-btn.active {
    background: var(--skytech-danger);
    color: #fff;
    border-color: var(--skytech-danger);
}

/*=============================================
    NOTICES
=============================================*/
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
    padding: 12px 20px;
    margin-bottom: 20px;
    border-radius: var(--skytech-radius-sm);
    font-size: 13px;
    border-left: 3px solid;
}

.woocommerce-message {
    background: #ecf7ed;
    border-color: var(--skytech-success);
    color: #2c5e2c;
}

.woocommerce-info {
    background: #e5f3ff;
    border-color: #135e96;
    color: #1a3c5e;
}

.woocommerce-error {
    background: #fbeaea;
    border-color: var(--skytech-danger);
    color: #5c2c2c;
}

/*=============================================
    BREADCRUMB
=============================================*/
.woocommerce-breadcrumb {
    font-size: 13px;
    color: var(--skytech-text-light);
    margin-bottom: 10px;
}

.woocommerce-breadcrumb a {
    color: var(--skytech-text-light);
}

.woocommerce-breadcrumb a:hover {
    color: var(--skytech-secondary);
}

/*=============================================
    WOOCOMMERCE OVERRIDES
=============================================*/
.woocommerce-product-gallery {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.woocommerce-product-gallery__wrapper {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.woocommerce-product-gallery__image {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.woocommerce-product-gallery__image a {
    max-width: 100% !important;
    display: block !important;
}

.woocommerce-product-gallery__image img,
.wp-post-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    max-height: 600px !important;
    object-fit: contain !important;
    display: block !important;
    box-sizing: border-box !important;
}

.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
    max-width: 25%;
}

.woocommerce-product-gallery .flex-viewport {
    max-width: 100%;
}

.woocommerce .star-rating {
    font-size: 13px;
    width: 6em;
}

.woocommerce .star-rating span::before {
    color: #f5a623;
}

.price_slider_wrapper .price_slider {
    margin-top: 10px;
}

.price_slider_wrapper .price_slider .ui-slider-range {
    background: var(--skytech-secondary);
}

.price_slider_wrapper .price_slider .ui-slider-handle {
    background: var(--skytech-secondary);
    border: 2px solid #fff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    top: -6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.price_slider_amount .button {
    background: var(--skytech-primary);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: var(--skytech-radius-sm);
    font-size: 13px;
    cursor: pointer;
    font-family: var(--skytech-font);
    transition: var(--skytech-transition);
}

.price_slider_amount .button:hover {
    background: var(--skytech-secondary);
}

.price_label {
    font-size: 13px;
    color: var(--skytech-text-light);
}

/*=============================================
    BRAND ARCHIVE PAGE
=============================================*/
.brand-archive-logo {
    margin-bottom: 10px;
}

.brand-archive-logo .brand-logo-img {
    max-height: 60px;
    max-width: 200px;
    object-fit: contain;
}

.brand-archive-description {
    font-size: 14px;
    color: var(--skytech-text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

/*=============================================
    PROMO LABEL
=============================================*/
.promo-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.85;
    background: rgba(255,255,255,0.2);
    padding: 3px 10px;
    border-radius: 3px;
}

/*=============================================
    CATEGORY SECTION DYNAMIC
=============================================*/
.skytech-category-section {
    padding: 40px 0;
}

/*=============================================
    BRAND CARD (All Brands Page)
=============================================*/
.brand-card {
    transition: var(--skytech-transition);
}

.brand-card:hover {
    border-color: var(--skytech-secondary);
}

/*=============================================
    ALL BRANDS PAGE
=============================================*/
.skytech-page-wrapper .page-header {
    background: var(--skytech-bg-gray);
    padding: 25px 0;
    margin-bottom: 30px;
}

.skytech-page-wrapper .page-content {
    padding-bottom: 50px;
}

/*=============================================
    NO PRODUCTS FOUND
=============================================*/
.woocommerce-info.no-products-found,
.woocommerce-info {
    text-align: center;
    padding: 40px 20px;
    font-size: 15px;
    background: var(--skytech-bg-gray);
    border-radius: var(--skytech-radius);
}

/* =============================================
   OVERRIDE: Remove hero banner dark overlay
   Forces full brightness on hero images.
   ============================================= */
.skytech-hero-slider .hero-slide::before,
.hero-slide::before {
    content: none !important;
    display: none !important;
    background: none !important;
    opacity: 0 !important;
}

.hero-slide {
    opacity: 1 !important;
    filter: none !important;
}

.hero-slide img {
    opacity: 1 !important;
    filter: none !important;
}

.skytech-hero-slider .swiper-slide {
    opacity: 1 !important;
    filter: none !important;
}

.skytech-hero-slider .swiper-slide::before {
    content: none !important;
    display: none !important;
    background: none !important;
}
