/*
Theme Name: GoStore Child
Theme URI: https://demo.theme-sky.com/gostore/
Author: Theme Sky Team
Author URI: http://theme-sky.com/
Description: A Premium and Responsive WordPress theme, designed for E-Commerce websites
Template: gostore
Version: 1.0.0
License: GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Tags: two-columns, left-sidebar, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready
Text Domain: gostore-child
*/


/* ==========================================================================
   PART 1 — USER CUSTOM CSS
   ========================================================================== */

/* -------------------------------------------------------------------------
   1.1 Product Category Wrapper
   ------------------------------------------------------------------------- */

.ts-product-category-wrapper .products,
.ts-product-category-wrapper .product-category,
.ts-product-category-wrapper .product-wrapper {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.ts-product-category-wrapper .product-wrapper > a:first-child {
    display: block !important;
    position: relative !important;
    border-radius: 40px !important;
    padding: 3px !important;
    background: #E6A3A3 !important;
    overflow: hidden !important;
    width: fit-content !important;
    margin: 0 auto !important;
}

.ts-product-category-wrapper .product-wrapper > a:first-child > img {
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
    border-radius: 37px !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.ts-product-category-wrapper .product-wrapper > a:first-child:hover > img {
    opacity: 1 !important;
    transform: none !important;
}

/* -------------------------------------------------------------------------
   1.2 Store Notice Bar
   ------------------------------------------------------------------------- */

.ts-store-notice {
    position: relative;
    direction: rtl;
    width: 100%;
    background: linear-gradient(135deg, #0f2d3a 0%, #1a4a5e 100%) !important;
    color: #eaf3f6 !important;
    border-bottom: 1px solid rgba(255,255,255,0.10) !important;
    overflow: hidden;
    z-index: 50;
}

/* subtle icons/pattern layer */
.ts-store-notice::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    pointer-events: none;
    background-repeat: repeat;
    background-size: 520px 80px;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='80' viewBox='0 0 520 80'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.6'%3E%3Ccircle cx='48' cy='42' r='10'/%3E%3Ccircle cx='86' cy='26' r='6'/%3E%3Ccircle cx='132' cy='50' r='8'/%3E%3Ccircle cx='188' cy='30' r='7'/%3E%3Ccircle cx='238' cy='46' r='11'/%3E%3Ccircle cx='302' cy='28' r='6'/%3E%3Ccircle cx='348' cy='52' r='9'/%3E%3Ccircle cx='402' cy='34' r='7'/%3E%3Ccircle cx='458' cy='48' r='10'/%3E%3C/g%3E%3Cg fill='%23ffffff' fill-opacity='0.65'%3E%3Cpath d='M260 18 l2 6 l6 2 l-6 2 l-2 6 l-2-6 l-6-2 l6-2z'/%3E%3Cpath d='M410 18 l1.5 4.5 l4.5 1.5 l-4.5 1.5 l-1.5 4.5 l-1.5-4.5 l-4.5-1.5 l4.5-1.5z'/%3E%3C/g%3E%3C/svg%3E");
}

/* inner content */
.ts-store-notice .content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 44px;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1.2;
    text-align: center;
}

/* optional: tiny icon before text (truck) */
.ts-store-notice .content span {
    position: relative;
}

.ts-store-notice .content span::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px; /* RTL */
    transform: translateY(2px);
    opacity: .9;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M3 6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3h2.6a2 2 0 0 1 1.7.95l1.4 2.3A2 2 0 0 1 25 15.3V17a2 2 0 0 1-2 2h-1.1a3 3 0 0 1-5.8 0H10.9a3 3 0 0 1-5.8 0H5a2 2 0 0 1-2-2V6Zm4.8 13a1.5 1.5 0 1 0 0-3a1.5 1.5 0 0 0 0 3Zm11 0a1.5 1.5 0 1 0 0-3a1.5 1.5 0 0 0 0 3ZM19 11V6a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v7h16v-2Zm2.6 1H20v3h3.8l-1.2-2a1 1 0 0 0-.8-.5Z'/%3E%3C/svg%3E");
}

/* close button */
.ts-store-notice .close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 14px; /* RTL: close button on the left */
    width: 28px;
    height: 28px;
    border-radius: 999px;
    cursor: pointer;
    opacity: .85;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(6px);
}

.ts-store-notice .close::before,
.ts-store-notice .close::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 12px;
    height: 2px;
    background: rgba(255,255,255,0.9);
    border-radius: 2px;
}

.ts-store-notice .close::before { transform: rotate(45deg); }
.ts-store-notice .close::after  { transform: rotate(-45deg); }

.ts-store-notice .close:hover {
    opacity: 1;
    background: rgba(255,255,255,0.12);
}

/* mobile tuning */
@media (max-width: 768px) {
    .ts-store-notice .content {
        padding: 10px 38px;
        font-size: 13px;
    }
    .ts-store-notice::before {
        background-size: 420px 80px;
        opacity: .14;
    }
}

/* -------------------------------------------------------------------------
   1.3 Search by Category
   ------------------------------------------------------------------------- */

.ts-search-by-category {
    border-radius: 15px;
}

/* -------------------------------------------------------------------------
   1.4 WooCommerce Buttons
   ------------------------------------------------------------------------- */

.woocommerce div.product form.cart .button,
.woocommerce .cart_totals .wc-proceed-to-checkout a.button,
.ts-tiny-cart-wrapper .dropdown-footer .button.checkout-button,
.woocommerce #payment #place_order {
    background-color: #49c3e8 !important;
    border-radius: 15px !important;
    border-color: #49c3e8 !important;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce .cart_totals .wc-proceed-to-checkout a.button:hover,
.ts-tiny-cart-wrapper .dropdown-footer .button.checkout-button:hover,
.woocommerce #payment #place_order:hover {
    background-color: #3ab0d4 !important;
    border-color: #3ab0d4 !important;
}

/* -------------------------------------------------------------------------
   1.5 Cart Totals
   ------------------------------------------------------------------------- */

.ts-tiny-cart-wrapper .total > span.amount {
    color: black !important;
}

.woocommerce .cart_totals .woocommerce-Price-amount,
.woocommerce .cart_totals td .woocommerce-Price-amount,
.woocommerce table.shop_table td .woocommerce-Price-amount {
    color: #000 !important;
}

.ts-cart-checkout-process-bar > a.active {
    border-color: #49c3e8 !important;
    color: #49c3e8 !important;
}


/* ==========================================================================
   PART 2 — PRODUCT CARD REDESIGN (Floating Cards + Overlay Buttons)
   ========================================================================== */

/* -------------------------------------------------------------------------
   2.1 Remove Grid Borders
   ------------------------------------------------------------------------- */

.woocommerce .products {
    border: none !important;
}

.woocommerce .products .product {
    border: none !important;
    padding: 10px !important;
    margin: 0 !important;
}

.ts-slider .owl-item {
    border: none !important;
}

.ts-slider .products .owl-stage-outer,
.ts-slider .products .owl-stage-outer:before,
.ts-slider .products .owl-stage-outer:after {
    border: none !important;
}

/* -------------------------------------------------------------------------
   2.2 Card Elevation
   ------------------------------------------------------------------------- */

.woocommerce .products .product:not(.product-category) .product-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    padding: 0 !important;
    overflow: hidden;
    display: flex !important;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* -------------------------------------------------------------------------
   2.3 Card Hover (Desktop Only)
   ------------------------------------------------------------------------- */

body.ts_desktop .products .product:not(.product-category) .product-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.10),
                0 4px 12px rgba(73,195,232,0.15);
}

/* -------------------------------------------------------------------------
   2.4 Thumbnail Area
   ------------------------------------------------------------------------- */

.woocommerce .product .thumbnail-wrapper {
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

/* Uniform image height: fixed aspect ratio */
.woocommerce .products .product:not(.product-category) .thumbnail-wrapper figure {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.woocommerce .products .product:not(.product-category) .thumbnail-wrapper figure img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.woocommerce .product .thumbnail-wrapper figure img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

body.ts_desktop .product-wrapper:hover .thumbnail-wrapper figure img:first-child {
    transform: scale(1.08) !important;
}

/* Reduce dark overlay opacity */
.woocommerce .product .thumbnail-wrapper > a:before {
    opacity: 0 !important;
}

body.ts_desktop .product-wrapper:hover .thumbnail-wrapper > a:before {
    opacity: 0.05 !important;
    visibility: visible !important;
}

/* -------------------------------------------------------------------------
   2.5 Meta Area Spacing
   ------------------------------------------------------------------------- */

.woocommerce .product:not(.product-category) .product-wrapper .meta-wrapper {
    padding: 14px 16px 16px !important;
    width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.woocommerce .product-wrapper .meta-wrapper > * {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.woocommerce .product-wrapper .meta-wrapper > .product-group-price-button-meta > .price {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

/* -------------------------------------------------------------------------
   2.6 Product Title
   ------------------------------------------------------------------------- */

.woocommerce .product-wrapper .meta-wrapper .product-title,
.woocommerce .product-wrapper .meta-wrapper h3 {
    font-size: 14px !important;
    line-height: 1.5 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
    min-height: calc(2 * 1.5 * 14px); /* always reserve 2 lines (42px) */
}

.woocommerce .product-wrapper .meta-wrapper .product-title a:hover,
.woocommerce .product-wrapper .meta-wrapper h3 a:hover {
    color: #49c3e8 !important;
}

/* -------------------------------------------------------------------------
   2.7 Rating
   ------------------------------------------------------------------------- */

.woocommerce .product-wrapper .meta-wrapper .star-rating {
    margin-bottom: 6px;
}

/* -------------------------------------------------------------------------
   2.8 Price
   ------------------------------------------------------------------------- */

.woocommerce .product-wrapper .meta-wrapper .price {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.woocommerce .product-wrapper .meta-wrapper .price ins {
    color: #49c3e8;
    font-weight: 600;
}

.woocommerce .product-wrapper .meta-wrapper .price del {
    font-size: 0.85em;
    opacity: 0.5;
}

/* -------------------------------------------------------------------------
   2.9 Action Buttons (Overlay on Hover)
   ------------------------------------------------------------------------- */

.thumbnail-wrapper .product-group-button > div {
    width: 36px !important;
    height: 36px !important;
    margin: 2px 0 !important;
}

.thumbnail-wrapper .product-group-button > div a {
    width: 36px !important;
    height: 36px !important;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease !important;
}

.thumbnail-wrapper .product-group-button > div a:after {
    line-height: 36px !important;
    font-size: 14px !important;
    color: #333 !important;
    transition: color 0.2s ease !important;
}

.thumbnail-wrapper .product-group-button > div a:hover {
    background: #49c3e8 !important;
    box-shadow: 0 4px 12px rgba(73,195,232,0.3) !important;
}

.thumbnail-wrapper .product-group-button > div a:hover:after {
    color: #fff !important;
}

/* Position buttons slightly inset from edge */
.thumbnail-wrapper .product-group-button {
    bottom: 8px !important;
}

/* -------------------------------------------------------------------------
   2.10 Product Labels / Badges
   ------------------------------------------------------------------------- */

.woocommerce .product .product-label span,
.woocommerce .product .onsale {
    border-radius: 4px;
}

.woocommerce .product .product-label.circle span {
    border-radius: 50%;
}

/* -------------------------------------------------------------------------
   2.11 Responsive
   ------------------------------------------------------------------------- */

@media (max-width: 1199px) {
    .woocommerce .products .product {
        padding: 8px !important;
    }
    .woocommerce .products .product:not(.product-category) .product-wrapper {
        border-radius: 10px;
    }
    .woocommerce .product:not(.product-category) .thumbnail-wrapper {
        border-radius: 10px 10px 0 0;
    }
    .woocommerce .product:not(.product-category) .product-wrapper .meta-wrapper {
        padding: 12px !important;
    }
}

@media (max-width: 767px) {
    .woocommerce .products .product {
        padding: 6px !important;
    }
    .woocommerce .products .product:not(.product-category) .product-wrapper {
        border-radius: 8px;
    }
    .woocommerce .product:not(.product-category) .thumbnail-wrapper {
        border-radius: 8px 8px 0 0;
    }
    .woocommerce .product:not(.product-category) .product-wrapper .meta-wrapper {
        padding: 10px !important;
    }
    /* Disable hover transform on touch devices */
    .woocommerce .products .product:not(.product-category) .product-wrapper:hover {
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .woocommerce .products .product {
        padding: 4px !important;
    }
    .woocommerce .products .product:not(.product-category) .product-wrapper {
        border-radius: 6px;
        box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    }
    .woocommerce .product:not(.product-category) .thumbnail-wrapper {
        border-radius: 6px 6px 0 0;
    }
    .woocommerce .product:not(.product-category) .product-wrapper .meta-wrapper {
        padding: 8px !important;
    }
}

/* -------------------------------------------------------------------------
   2.12 List Layout
   ------------------------------------------------------------------------- */

/* List layout: remove parent's border system */
.woocommerce.item-layout-list .products {
    border: none !important;
}

.woocommerce.item-layout-list .products .product {
    border: none !important;
}


/* ==========================================================================
   PART 2B — SINGLE PRODUCT PAGE
   ========================================================================== */

/* -------------------------------------------------------------------------
   Product Gallery — rounded + subtle shadow
   ------------------------------------------------------------------------- */

.woocommerce div.product div.woocommerce-product-gallery {
    border-radius: 12px;
    overflow: hidden;
}

.woocommerce div.product div.images .flex-viewport {
    border-radius: 12px !important;
    border-color: rgba(0,0,0,0.06) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.woocommerce div.product div.images .flex-control-thumbs li img {
    border-radius: 8px;
    transition: opacity 0.25s ease !important;
}

/* -------------------------------------------------------------------------
   Price — accent sale, faded del
   ------------------------------------------------------------------------- */

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
    color: #49c3e8 !important;
    font-weight: 600;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
    opacity: 0.45;
    font-size: 0.85em;
}

/* -------------------------------------------------------------------------
   Quantity Selector — rounded to match buttons
   ------------------------------------------------------------------------- */

.woocommerce div.product form.cart div.quantity {
    border-radius: 10px !important;
    overflow: hidden;
}

.woocommerce div.product form.cart div.quantity input.qty {
    border-radius: 0 !important;
}

/* -------------------------------------------------------------------------
   Tabs — accent active state
   ------------------------------------------------------------------------- */

.woocommerce div.product .woocommerce-tabs ul.tabs li.active > a {
    color: #49c3e8 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before {
    background: #49c3e8 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li > a:hover {
    color: #49c3e8 !important;
}

.woocommerce div.product .woocommerce-tabs .panel {
    border-radius: 0 0 8px 8px;
}

/* -------------------------------------------------------------------------
   Product Meta (SKU, categories, tags) — subtler
   ------------------------------------------------------------------------- */

.woocommerce div.product .product_meta {
    opacity: 0.7;
    font-size: 13px;
}

.woocommerce div.product .product_meta a:hover {
    color: #49c3e8 !important;
}

/* -------------------------------------------------------------------------
   Wishlist / Compare — clean hover
   ------------------------------------------------------------------------- */

div.product .summary .wishlist a:hover,
div.product .summary .compare a:hover {
    color: #49c3e8 !important;
}

/* -------------------------------------------------------------------------
   Related / Upsell Section Title
   ------------------------------------------------------------------------- */

.related > h2,
.up-sells > h2,
.cross-sells > h2 {
    position: relative;
    padding-bottom: 12px;
}

.related > h2::after,
.up-sells > h2::after,
.cross-sells > h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #49c3e8;
    border-radius: 2px;
}


/* ==========================================================================
   PART 3 — FOOTER STYLING  (store-notice aesthetic)
   ========================================================================== */

/* -------------------------------------------------------------------------
   3.1 Footer Container — SVG pattern overlay (matches store notice)
   ------------------------------------------------------------------------- */

#colophon.footer-area {
    position: relative;
    overflow: hidden;
}

#colophon.footer-area::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .10;
    pointer-events: none;
    z-index: 0;
    background-repeat: repeat;
    background-size: 520px 80px;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='80' viewBox='0 0 520 80'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.6'%3E%3Ccircle cx='48' cy='42' r='10'/%3E%3Ccircle cx='86' cy='26' r='6'/%3E%3Ccircle cx='132' cy='50' r='8'/%3E%3Ccircle cx='188' cy='30' r='7'/%3E%3Ccircle cx='238' cy='46' r='11'/%3E%3Ccircle cx='302' cy='28' r='6'/%3E%3Ccircle cx='348' cy='52' r='9'/%3E%3Ccircle cx='402' cy='34' r='7'/%3E%3Ccircle cx='458' cy='48' r='10'/%3E%3C/g%3E%3Cg fill='%23ffffff' fill-opacity='0.65'%3E%3Cpath d='M260 18 l2 6 l6 2 l-6 2 l-2 6 l-2-6 l-6-2 l6-2z'/%3E%3Cpath d='M410 18 l1.5 4.5 l4.5 1.5 l-4.5 1.5 l-1.5 4.5 l-1.5-4.5 l-4.5-1.5 l4.5-1.5z'/%3E%3C/g%3E%3C/svg%3E");
}

#colophon.footer-area > .container {
    position: relative;
    z-index: 1;
}

/* -------------------------------------------------------------------------
   3.2 Footer Headings — accent underline bar
   ------------------------------------------------------------------------- */

#colophon .elementor-widget-heading .elementor-heading-title {
    position: relative !important;
    padding-bottom: 12px !important;
    margin-bottom: 20px !important;
    font-size: 18px !important;
    letter-spacing: 0.3px !important;
    color: #eaf3f6 !important;
}

#colophon .elementor-widget-heading .elementor-heading-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0; /* RTL */
    width: 40px;
    height: 3px;
    background: #49c3e8;
    border-radius: 2px;
}

/* -------------------------------------------------------------------------
   3.3 Footer All Text — light color on dark bg
   ------------------------------------------------------------------------- */

#colophon .elementor-widget-text-editor,
#colophon .elementor-widget-text-editor p {
    color: rgba(234,243,246,0.7) !important;
    font-size: 13.5px !important;
    line-height: 1.7 !important;
}

/* -------------------------------------------------------------------------
   3.4 Category List Links
   ------------------------------------------------------------------------- */

#colophon .list-categories .heading-title {
    font-size: 13px !important;
    color: rgba(234,243,246,0.45) !important;
    margin-bottom: 14px !important;
    font-weight: 400 !important;
}

#colophon .list-categories ul li a {
    color: rgba(234,243,246,0.75) !important;
    transition: color 0.25s ease, padding-right 0.25s ease !important;
    padding: 4px 0 !important;
    display: inline-block !important;
    font-size: 13.5px !important;
}

#colophon .list-categories ul li a:hover {
    color: #49c3e8 !important;
    padding-right: 6px !important; /* RTL indent */
}

#colophon .list-categories ul {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

/* -------------------------------------------------------------------------
   3.5 Icon List Links (useful info column)
   ------------------------------------------------------------------------- */

#colophon .elementor-icon-list-items .elementor-icon-list-item {
    padding: 3px 0 !important;
}

#colophon .elementor-icon-list-text {
    color: rgba(234,243,246,0.75) !important;
    transition: color 0.25s ease !important;
    font-size: 13.5px !important;
}

#colophon .elementor-icon-list-icon svg {
    fill: rgba(234,243,246,0.5) !important;
    width: 14px !important;
    height: 14px !important;
    transition: fill 0.25s ease !important;
}

#colophon .elementor-icon-list-item a:hover .elementor-icon-list-text {
    color: #49c3e8 !important;
}

#colophon .elementor-icon-list-item a:hover .elementor-icon-list-icon svg {
    fill: #49c3e8 !important;
}

/* -------------------------------------------------------------------------
   3.6 Social Icons — glassmorphic style (like store notice close btn)
   ------------------------------------------------------------------------- */

#colophon .elementor-social-icon {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    backdrop-filter: blur(6px) !important;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease !important;
}

#colophon .elementor-social-icon:hover {
    background: #49c3e8 !important;
    border-color: #49c3e8 !important;
    transform: translateY(-2px);
}

#colophon .elementor-social-icon svg {
    fill: rgba(255,255,255,0.9) !important;
}

#colophon .elementor-social-icon:hover svg {
    fill: #fff !important;
}

/* -------------------------------------------------------------------------
   3.7 Bottom Bar — subtle divider
   ------------------------------------------------------------------------- */

#colophon .footer {
    border-top: 1px solid rgba(255,255,255,0.10) !important;
    padding: 18px 24px !important;
    margin-top: 30px !important;
}

#colophon .footer .footer-right {
    color: rgba(234,243,246,0.55) !important;
    font-size: 13px !important;
}

#colophon .footer .footer-left {
    opacity: 0.7;
    transition: opacity 0.25s ease;
}

#colophon .footer .footer-left:hover {
    opacity: 1;
}

#colophon .footer .separator {
    color: rgba(255,255,255,0.3) !important;
}

/* -------------------------------------------------------------------------
   3.8 Footer Column Spacing
   ------------------------------------------------------------------------- */

#colophon .elementor-element-4c156c5 > .e-con-inner {
    gap: 40px;
}

/* -------------------------------------------------------------------------
   3.9 Footer Responsive
   ------------------------------------------------------------------------- */

@media (max-width: 767px) {
    #colophon .elementor-widget-heading .elementor-heading-title::after {
        right: 50% !important;
        transform: translateX(50%);
    }
    #colophon .elementor-widget-heading .elementor-heading-title {
        text-align: center !important;
    }
    #colophon .list-categories {
        text-align: center !important;
    }
    #colophon .list-categories ul li a:hover {
        padding-right: 0 !important;
    }
    #colophon .elementor-element-4c156c5 > .e-con-inner {
        gap: 30px;
    }
    #colophon.footer-area::before {
        opacity: .06;
    }
}


/* ==========================================================================
   PART 3B — HEADER + FLOATING LOGIN
   ========================================================================== */

/* -------------------------------------------------------------------------
   Header — gradient background matching store notice
   ------------------------------------------------------------------------- */

.ts-header,
.ts-header .header-middle,
.ts-header .header-bottom {
    background: linear-gradient(135deg, #0f2d3a 0%, #1a4a5e 100%) !important;
}

.ts-header .header-bottom {
    border-color: rgba(255,255,255,0.08) !important;
}

/* Header sticky — same gradient */
.ts-header .header-sticky.is-sticky {
    background: linear-gradient(135deg, #0f2d3a 0%, #1a4a5e 100%) !important;
}

/* Header text/icons — light on dark */
.ts-header .header-middle,
.ts-header .header-middle a,
.ts-header .header-bottom,
.ts-header .header-bottom a,
.ts-header .header-right > div > a,
.ts-header .menu-wrapper a {
    color: #eaf3f6 !important;
}

.ts-header .header-middle a:hover,
.ts-header .header-bottom a:hover,
.ts-header .menu-wrapper a:hover {
    color: #49c3e8 !important;
}

/* Search bar in header — subtle on dark */
.ts-header .ts-search-by-category {
    background: rgba(255,255,255,0.08) !important;
    border-color: rgba(255,255,255,0.12) !important;
}

.ts-header .ts-search-by-category input {
    color: #eaf3f6 !important;
}

.ts-header .ts-search-by-category input::placeholder {
    color: rgba(234,243,246,0.5) !important;
}

/* Category dropdown inside search — match text */
.ts-header .ts-search-by-category .select-category {
    color: rgba(234,243,246,0.7) !important;
    background: transparent !important;
}

.ts-header .ts-search-by-category .select-category option {
    background: #0f2d3a !important;
    color: #eaf3f6 !important;
}

/* Search icon / button */
.ts-header .ts-search-by-category .button-search,
.ts-header .ts-search-by-category .search-button,
.ts-header .ts-search-by-category .search-content input[type="submit"] {
    color: #eaf3f6 !important;
}

.ts-header .ts-search-by-category .search-button:before,
.ts-header .ts-search-by-category .button-search:before {
    color: #eaf3f6 !important;
}

.ts-header .ts-search-by-category .search-content:after {
    color: #eaf3f6 !important;
}

.ts-header .ts-search-by-category .search-content:before {
    border-color: rgba(255,255,255,0.12) !important;
}

/* Cart + Wishlist badges — both accent */
.ts-header .shopping-cart-wrapper .cart-number,
.ts-header .tini-wishlist .count-number,
.ts-header .my-wishlist-wrapper .count-number {
    background: #49c3e8 !important;
    color: #fff !important;
}

/* -------------------------------------------------------------------------
   Floating Login Dropdown — dark glass style
   ------------------------------------------------------------------------- */

.my-account-wrapper .dropdown-container {
    background: linear-gradient(135deg, #0f2d3a 0%, #1a4a5e 100%) !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3) !important;
    padding: 30px 22px 24px !important;
    /* Fix off-screen for RTL: anchor to left edge of the icon */
    left: 0 !important;
    right: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: none !important;
}

.my-account-wrapper .dropdown-container:before {
    background: linear-gradient(135deg, #0f2d3a 0%, #1a4a5e 100%) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25) !important;
}

/* Login form title */
.my-account-wrapper .dropdown-title {
    color: #eaf3f6 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 18px !important;
}

/* Input fields */
.my-account-wrapper .dropdown-container input[type="text"],
.my-account-wrapper .dropdown-container input[type="password"],
.my-account-wrapper .dropdown-container input[type="email"],
#ts-login-form input[type="text"],
#ts-login-form input[type="password"] {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    border-radius: 8px !important;
    color: #eaf3f6 !important;
    padding: 10px 14px !important;
    transition: border-color 0.25s ease !important;
}

.my-account-wrapper .dropdown-container input:focus,
#ts-login-form input:focus {
    border-color: #49c3e8 !important;
    outline: none !important;
}

.my-account-wrapper .dropdown-container input::placeholder,
#ts-login-form input::placeholder {
    color: rgba(234,243,246,0.4) !important;
}

/* Labels */
.my-account-wrapper .dropdown-container label,
#ts-login-form label {
    color: rgba(234,243,246,0.7) !important;
    font-size: 13px !important;
}

/* Login button */
.my-account-wrapper .login-submit input[type="submit"],
#ts-login-form .login-submit input[type="submit"] {
    background: #49c3e8 !important;
    border: none !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    transition: background 0.25s ease !important;
    cursor: pointer;
}

.my-account-wrapper .login-submit input[type="submit"]:hover,
#ts-login-form .login-submit input[type="submit"]:hover {
    background: #3ab0d4 !important;
}

/* Remember me checkbox */
#ts-login-form .login-remember label,
.my-account-wrapper .login-remember label {
    color: rgba(234,243,246,0.6) !important;
}

/* Forgot password / sign up links */
.my-account-wrapper .forgot-pass a,
.my-account-wrapper .form-content a.sign-up,
.my-account-wrapper .form-bottom a {
    color: #49c3e8 !important;
    text-decoration-color: rgba(73,195,232,0.3) !important;
}

.my-account-wrapper .form-bottom a:hover,
.my-account-wrapper .forgot-pass a:hover {
    color: #3ab0d4 !important;
}

/* Logged-in dropdown links */
body.logged-in .my-account-wrapper .dropdown-container ul li a {
    color: rgba(234,243,246,0.75) !important;
    transition: color 0.25s ease !important;
    padding: 6px 0 !important;
    display: block !important;
}

body.logged-in .my-account-wrapper .dropdown-container ul li a:hover {
    color: #49c3e8 !important;
}


/* ==========================================================================
   PART 4 — FREE SHIPPING SNACKBAR + CELEBRATION
   ========================================================================== */

/* ── Snackbar base ── */

.sk-ship-snack {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    direction: rtl;
    max-width: 340px;
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.3s ease;
    pointer-events: auto;
}

.sk-ship-snack.visible {
    transform: translateY(0);
    opacity: 1;
}

.sk-ship-snack-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sk-ship-snack-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
}

.sk-ship-snack-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.sk-ship-snack-text strong {
    display: block;
    margin-bottom: 4px;
}

.sk-ship-snack-sub {
    font-size: 12.5px;
    opacity: 0.75;
    display: block;
}

.sk-ship-snack-close {
    position: absolute;
    top: 8px;
    left: 8px;
    background: none;
    border: none;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.5;
    padding: 0;
    line-height: 1;
}

.sk-ship-snack-close:hover {
    opacity: 1;
}

/* ── Remaining variant (dark) ── */

.sk-ship-snack--remaining {
    background: linear-gradient(135deg, #0f2d3a 0%, #1a4a5e 100%);
    color: #eaf3f6;
}

/* ── Progress bar ── */

.sk-ship-progress {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    margin-top: 8px;
    overflow: hidden;
}

.sk-ship-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #49c3e8, #3ab0d4);
    border-radius: 3px;
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Success variant (accent) ── */

.sk-ship-snack--success {
    background: linear-gradient(135deg, #49c3e8 0%, #3ab0d4 100%);
    color: #fff;
}

/* ── Confetti canvas ── */

.sk-confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99998;
    pointer-events: none;
}

/* ── Mobile ── */

@media (max-width: 480px) {
    .sk-ship-snack {
        right: 12px;
        left: 12px;
        bottom: 12px;
        max-width: none;
    }
}


/* ==========================================================================
   PART 5 — MOBILE BOTTOM BAR (match header design)
   ========================================================================== */

#ts-mobile-button-bottom {
    background: linear-gradient(135deg, #0f2d3a 0%, #1a4a5e 100%) !important;
    box-shadow: 0 -3px 8px rgba(0,0,0,0.25) !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
}

/* Icons + text — light on dark */
#ts-mobile-button-bottom a {
    color: rgba(234,243,246,0.75) !important;
}

#ts-mobile-button-bottom a:before {
    color: rgba(234,243,246,0.75) !important;
}

#ts-mobile-button-bottom span {
    color: rgba(234,243,246,0.75) !important;
}

/* Active / hover state — accent */
#ts-mobile-button-bottom a:hover,
#ts-mobile-button-bottom a.active,
#ts-mobile-button-bottom a:hover:before,
#ts-mobile-button-bottom a.active:before {
    color: #49c3e8 !important;
}

#ts-mobile-button-bottom a:hover span,
#ts-mobile-button-bottom a.active span {
    color: #49c3e8 !important;
}

/* Cart + Wishlist badges — accent pill */
#ts-mobile-button-bottom .shopping-cart-wrapper .cart-number,
#ts-mobile-button-bottom .tini-wishlist .count-number,
#ts-mobile-button-bottom .my-wishlist-wrapper .count-number {
    background: #49c3e8 !important;
    color: #fff !important;
}


/* ==========================================================================
   PART 6 — COOKIE CONSENT BANNER
   ========================================================================== */

.sk-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    direction: rtl;
    background: linear-gradient(135deg, #0f2d3a 0%, #1a4a5e 100%);
    border-top: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.2, 0.64, 1),
                opacity 0.4s ease;
}

.sk-cookie-banner--visible {
    transform: translateY(0);
    opacity: 1;
}

.sk-cookie-banner--hidden {
    transform: translateY(100%);
    opacity: 0;
}

.sk-cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
}

.sk-cookie-banner__text {
    color: rgba(234,243,246,0.85);
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sk-cookie-banner__icon {
    font-size: 22px;
    flex-shrink: 0;
    line-height: 1;
}

.sk-cookie-banner__btn {
    flex-shrink: 0;
    background: #49c3e8;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
    font-family: inherit;
}

.sk-cookie-banner__btn:hover {
    background: #3ab0d4;
    transform: translateY(-1px);
}

.sk-cookie-banner__btn:active {
    transform: translateY(0);
}

/* ── Mobile ── */

@media (max-width: 600px) {
    .sk-cookie-banner__inner {
        flex-direction: column;
        gap: 12px;
        padding: 14px 16px;
        text-align: center;
    }

    .sk-cookie-banner__text {
        flex-direction: column;
        font-size: 13px;
    }

    .sk-cookie-banner__btn {
        width: 100%;
        padding: 12px;
    }
}