/* ==========================================================
   CENCRAFT — WOOCOMMERCE
========================================================== */


/* ==========================================================
   GENERAL
========================================================== */

.cc-woocommerce {
    padding-top: 70px;
    padding-bottom: 100px;
}

.woocommerce {
    color: #dce5ef;
}

.woocommerce a {
    color: #35d7eb;
}

.woocommerce a:hover {
    color: #63e3f2;
}


/* ==========================================================
   CENCRAFT STORE — /DONATE/
========================================================== */

.cc-store {
    min-height: 70vh;
}


/* ==========================================================
   STORE HERO
========================================================== */

.cc-store-hero {
    padding: 80px 0 65px;

    border-bottom: 1px solid rgba(18, 217, 239, 0.10);

    background:
        radial-gradient(
            circle at 20% 0%,
            rgba(18, 217, 239, 0.08),
            transparent 38%
        );
}

.cc-store-hero .cc-eyebrow {
    color: #35d7eb;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.cc-store-hero h1 {
    margin: 14px 0 18px;

    color: #f4f7fb;

    font-size: clamp(48px, 6vw, 78px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.cc-store-hero p {
    max-width: 650px;
    margin: 0;

    color: #8d9caf;

    font-size: 18px;
    line-height: 1.7;
}


/* ==========================================================
   STORE CONTENT
========================================================== */

.cc-store-content {
    padding: 55px 0 100px;
}


/* ==========================================================
   STORE TOOLBAR
========================================================== */

.cc-store-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-bottom: 35px;
}

.cc-store-toolbar .woocommerce-result-count,
.cc-store-toolbar .woocommerce-ordering {
    float: none;

    margin: 0;
}

.woocommerce .woocommerce-result-count {
    color: #8190a5;

    font-size: 15px;
}

.woocommerce .woocommerce-ordering select,
.cc-store-ordering select {
    min-width: 220px;

    padding: 12px 42px 12px 16px;

    color: #dce5ef;
    background: #0d1928;

    border: 1px solid #26384c;
    border-radius: 8px;

    font: inherit;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.woocommerce .woocommerce-ordering select:focus,
.cc-store-ordering select:focus {
    border-color: rgba(18, 217, 239, 0.65);

    box-shadow:
        0 0 0 3px rgba(18, 217, 239, 0.08);
}


/* ==========================================================
   PRODUCT GRID
========================================================== */

.cc-store ul.products {
    display: grid !important;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 26px;

    margin: 0 !important;
    padding: 0 !important;
}

.cc-store ul.products::before,
.cc-store ul.products::after {
    display: none !important;
}


/* ==========================================================
   PRODUCT CARD
========================================================== */

.cc-store ul.products li.product {
    display: flex;
    flex-direction: column;

    width: auto !important;

    margin: 0 !important;
    padding: 18px !important;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(9, 27, 42, 0.98),
            rgba(6, 19, 33, 0.98)
        );

    border: 1px solid rgba(18, 217, 239, 0.20);
    border-radius: 16px;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.cc-store ul.products li.product:hover {
    transform: translateY(-4px);

    border-color: rgba(18, 217, 239, 0.50);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.25);
}


/* ==========================================================
   PRODUCT CARD IMAGE
========================================================== */

.cc-store ul.products li.product a img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 16 / 10;

    margin: 0 0 22px !important;

    object-fit: cover;

    background: #0d1c2c;

    border-radius: 10px;
}


/* ==========================================================
   PRODUCT CARD TITLE
========================================================== */

.cc-store ul.products li.product
.woocommerce-loop-product__title {

    margin: 0 4px 10px !important;
    padding: 0 !important;

    color: #f4f7fb;

    font-size: 21px;
    font-weight: 750;
    line-height: 1.3;
}


/* ==========================================================
   PRODUCT CARD PRICE
========================================================== */

.cc-store ul.products li.product .price {
    display: block;

    margin: 0 4px 20px !important;

    color: #35d7eb;

    font-size: 18px;
    font-weight: 700;
}


/* ==========================================================
   SALE BADGE
========================================================== */

.woocommerce span.onsale {
    min-width: auto;
    min-height: auto;

    margin: 12px !important;
    padding: 7px 12px;

    color: #041019;
    background: #35d7eb;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 800;
    line-height: 1;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}


/* ==========================================================
   BUTTONS
========================================================== */

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    padding: 13px 20px;

    color: #041019 !important;
    background: #22cfe6;

    border: 1px solid #22cfe6;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;

    box-shadow: none;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    color: #041019 !important;

    background: #4cddf0;

    border-color: #4cddf0;

    transform: translateY(-1px);

    box-shadow:
        0 8px 24px rgba(18, 217, 239, 0.15);
}

.cc-store ul.products li.product .button {
    display: block;

    width: 100%;

    margin-top: auto !important;

    padding: 13px 18px;

    text-align: center;
}


/* ==========================================================
   SINGLE PRODUCT
========================================================== */

.cc-woocommerce div.product {
    padding-top: 20px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
    margin-bottom: 60px;
}


/* ==========================================================
   SINGLE PRODUCT IMAGE
========================================================== */

.woocommerce div.product div.images img {
    display: block;

    width: 100%;

    background: #0d1928;

    border-radius: 18px;
}


/* ==========================================================
   SINGLE PRODUCT SUMMARY
========================================================== */

.woocommerce div.product .summary {
    padding: 30px 0 30px 35px;
}

.woocommerce div.product .product_title {
    margin: 0 0 18px;

    color: #f4f7fb;

    font-size: clamp(36px, 4vw, 58px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: #35d7eb;

    font-size: 25px;
    font-weight: 700;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    margin: 25px 0;

    color: #93a2b6;

    font-size: 17px;
    line-height: 1.7;
}


/* ==========================================================
   SINGLE PRODUCT CART
========================================================== */

.woocommerce div.product form.cart {
    display: flex;
    align-items: stretch;

    gap: 12px;

    margin: 28px 0;
}

.woocommerce div.product form.cart::before,
.woocommerce div.product form.cart::after {
    display: none;
}

.woocommerce div.product form.cart .button {
    min-height: 48px;
}


/* ==========================================================
   QUANTITY
========================================================== */

.woocommerce .quantity .qty {
    width: 75px;
    min-height: 48px;

    padding: 8px;

    color: #f4f7fb;
    background: #0d1928;

    border: 1px solid #26384c;
    border-radius: 8px;

    font: inherit;

    outline: none;
}

.woocommerce .quantity .qty:focus {
    border-color: rgba(18, 217, 239, 0.65);

    box-shadow:
        0 0 0 3px rgba(18, 217, 239, 0.08);
}


/* ==========================================================
   PRODUCT META
========================================================== */

.woocommerce div.product .product_meta {
    margin-top: 30px;
    padding-top: 22px;

    color: #7f8ea3;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.woocommerce div.product .product_meta > span {
    display: block;

    margin-bottom: 7px;
}

.woocommerce div.product .product_meta a {
    color: #35d7eb;
}


/* ==========================================================
   WOOCOMMERCE TABS
========================================================== */

.woocommerce div.product .woocommerce-tabs {
    clear: both;

    padding-top: 20px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    border: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin: 0 6px 0 0;

    background: #0d1928;

    border: 1px solid #26384c;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: #93a2b6;

    font-weight: 700;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: #102033;

    border-color: rgba(18, 217, 239, 0.35);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #35d7eb;
}

.woocommerce div.product .woocommerce-tabs .panel {
    padding: 25px 0;

    color: #93a2b6;

    line-height: 1.7;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
    color: #f4f7fb;
}


/* ==========================================================
   RELATED PRODUCTS
========================================================== */

.woocommerce .related.products {
    clear: both;

    margin-top: 60px;
}

.woocommerce .related.products > h2 {
    margin-bottom: 30px;

    color: #f4f7fb;

    font-size: 30px;
    font-weight: 800;
}


/* ==========================================================
   NOTICES
========================================================== */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    margin: 0 0 30px !important;
    padding: 18px 22px 18px 52px !important;

    color: #dce5ef !important;
    background: #0b1928 !important;

    border: 1px solid rgba(18, 217, 239, 0.28) !important;
    border-top: 1px solid rgba(18, 217, 239, 0.28) !important;
    border-radius: 12px;

    box-shadow: none;
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: #35d7eb;
}

.woocommerce-error::before {
    color: #ff7383;
}


/* ==========================================================
   FORMS
========================================================== */

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
    padding: 12px 14px;

    color: #e4ebf3;
    background: #0d1928;

    border: 1px solid #26384c;
    border-radius: 8px;

    font: inherit;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.woocommerce input.input-text:focus,
.woocommerce textarea:focus,
.woocommerce select:focus {
    border-color: rgba(18, 217, 239, 0.65);

    box-shadow:
        0 0 0 3px rgba(18, 217, 239, 0.08);
}


/* ==========================================================
   TABLES
========================================================== */

.woocommerce table.shop_table {
    overflow: hidden;

    color: #dce5ef;
    background: #081727;

    border: 1px solid rgba(18, 217, 239, 0.18);
    border-radius: 12px;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: 16px;

    border-color: rgba(255, 255, 255, 0.07);
}

.woocommerce table.shop_table th {
    color: #f4f7fb;
}


/* ==========================================================
   CART
========================================================== */

.woocommerce-cart table.cart img {
    width: 80px;

    border-radius: 8px;
}

.woocommerce-cart table.cart td.actions .coupon {
    display: flex;

    gap: 10px;
}

.woocommerce-cart .cart-collaterals {
    margin-top: 40px;
}

.woocommerce-cart .cart_totals {
    padding: 25px;

    background: #081727;

    border: 1px solid rgba(18, 217, 239, 0.18);
    border-radius: 14px;
}

.woocommerce-cart .cart_totals h2 {
    color: #f4f7fb;
}


/* ==========================================================
   CHECKOUT
========================================================== */

.woocommerce-checkout h3 {
    color: #f4f7fb;
}

.woocommerce-checkout-review-order {
    padding: 25px;

    background: #081727;

    border: 1px solid rgba(18, 217, 239, 0.18);
    border-radius: 14px;
}

.woocommerce-checkout #payment {
    color: #dce5ef;
    background: #0d1928;

    border: 1px solid rgba(18, 217, 239, 0.18);
    border-radius: 12px;
}

.woocommerce-checkout #payment div.payment_box {
    color: #93a2b6;
    background: #081727;
}

.woocommerce-checkout #payment div.payment_box::before {
    border-bottom-color: #081727;
}


/* ==========================================================
   WOOCOMMERCE ACCOUNT
========================================================== */

.woocommerce-MyAccount-navigation {
    padding: 20px;

    background: #081727;

    border: 1px solid rgba(18, 217, 239, 0.18);
    border-radius: 12px;
}

.woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.woocommerce-MyAccount-navigation li {
    margin: 0;
}

.woocommerce-MyAccount-navigation a {
    display: block;

    padding: 11px 12px;

    color: #93a2b6;

    border-radius: 7px;
}

.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation a:hover {
    color: #35d7eb;
    background: rgba(18, 217, 239, 0.06);
}


/* ==========================================================
   PAGINATION
========================================================== */

.woocommerce nav.woocommerce-pagination {
    margin-top: 45px;
}

.woocommerce nav.woocommerce-pagination ul {
    overflow: hidden;

    border: 1px solid #26384c;
    border-radius: 8px;
}

.woocommerce nav.woocommerce-pagination ul li {
    border-color: #26384c;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    color: #93a2b6;
    background: #0d1928;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    color: #041019;
    background: #35d7eb;
}


/* ==========================================================
   RESPONSIVE — TABLET
========================================================== */

@media (max-width: 1000px) {

    .cc-store ul.products {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .woocommerce div.product .summary {
        padding-left: 20px;
    }
}


/* ==========================================================
   RESPONSIVE — MOBILE
========================================================== */

@media (max-width: 768px) {

    .cc-woocommerce {
        padding-top: 45px;
        padding-bottom: 70px;
    }

    .cc-store-hero {
        padding: 55px 0 45px;
    }

    .cc-store-content {
        padding: 40px 0 70px;
    }

    .cc-store-toolbar {
        align-items: stretch;
        flex-direction: column;

        margin-bottom: 25px;
    }

    .cc-store-toolbar .woocommerce-result-count,
    .cc-store-toolbar .woocommerce-ordering {
        width: 100%;
    }

    .woocommerce .woocommerce-ordering select,
    .cc-store-ordering select {
        width: 100%;
    }

    .cc-store ul.products {
        grid-template-columns: 1fr;
    }

    .woocommerce div.product div.images,
    .woocommerce div.product div.summary {
        float: none;

        width: 100%;

        margin-bottom: 35px;
    }

    .woocommerce div.product .summary {
        padding: 10px 0;
    }

    .woocommerce div.product form.cart {
        flex-wrap: wrap;
    }

    .woocommerce-cart table.cart td.actions .coupon {
        flex-direction: column;
    }

    .woocommerce-cart table.cart td.actions .coupon input,
    .woocommerce-cart table.cart td.actions .coupon button {
        width: 100%;
    }
}


/* ==========================================================
   RESPONSIVE — SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .cc-store-hero h1 {
        font-size: 46px;
    }

    .cc-store ul.products li.product {
        padding: 14px !important;
    }

    .woocommerce div.product .product_title {
        font-size: 36px;
    }
}


/* ==========================================================
   CENCRAFT — SINGLE PRODUCT
========================================================== */

.cc-single-product {
    padding: 0;
}


/* ==========================================================
   MAIN PRODUCT AREA
========================================================== */

.cc-single-product-main {
    padding: 80px 0 90px;
}

.cc-single-product-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 520px)
        minmax(0, 1fr);

    gap: 80px;

    align-items: center;
}


/* ==========================================================
   PRODUCT IMAGE
========================================================== */

.cc-single-product-image {
    position: relative;

    padding: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(9, 27, 42, 0.96),
            rgba(6, 19, 33, 0.96)
        );

    border: 1px solid rgba(18, 217, 239, 0.24);
    border-radius: 20px;
}

.cc-single-product-image img,
.cc-single-product-image .cc-product-image {
    display: block;

    width: 100%;
    height: auto;

    margin: 0;

    border-radius: 13px;

    object-fit: cover;
}


/* ==========================================================
   PRODUCT INFORMATION
========================================================== */

.cc-single-product-info {
    min-width: 0;
}

.cc-single-product-info .cc-eyebrow {
    margin-bottom: 20px;
}

.cc-single-product-title {
    margin: 0 0 20px;

    color: #f4f7fb;

    font-size: clamp(44px, 5vw, 68px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}


/* ==========================================================
   PRICE
========================================================== */

.cc-single-product-price {
    margin-bottom: 26px;

    color: #35d7eb;

    font-size: 28px;
    font-weight: 750;
}

.cc-single-product-price del {
    margin-right: 8px;

    color: #6f8095;

    font-size: 19px;
}

.cc-single-product-price ins {
    color: #35d7eb;

    text-decoration: none;
}


/* ==========================================================
   SHORT DESCRIPTION
========================================================== */

.cc-single-product-description {
    max-width: 650px;

    margin-bottom: 32px;

    color: #93a2b6;

    font-size: 17px;
    line-height: 1.75;
}

.cc-single-product-description p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   ADD TO CART
========================================================== */

.cc-single-product-cart {
    margin-top: 30px;
}

.cc-single-product-cart form.cart {
    display: flex;

    gap: 12px;

    align-items: stretch;

    margin: 0 0 30px !important;
}

.cc-single-product-cart .quantity {
    float: none !important;
    margin: 0 !important;
}

.cc-single-product-cart .quantity .qty {
    width: 75px;
    height: 50px;

    padding: 0 10px;

    color: #f4f7fb;
    background: #0d1928;

    border: 1px solid #26384c;
    border-radius: 9px;

    text-align: center;
}

.cc-single-product-cart .single_add_to_cart_button {
    min-height: 50px;

    padding: 0 28px !important;

    color: #041019 !important;
    background: #22cfe6 !important;

    border: 1px solid #22cfe6 !important;
    border-radius: 9px !important;

    font-size: 15px !important;
    font-weight: 750 !important;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease !important;
}

.cc-single-product-cart .single_add_to_cart_button:hover {
    background: #4cddf0 !important;
    border-color: #4cddf0 !important;

    transform: translateY(-1px);
}


/* ==========================================================
   PRODUCT META
========================================================== */

.cc-single-product-meta {
    padding-top: 24px;

    color: #718196;

    border-top: 1px solid rgba(255, 255, 255, 0.07);

    font-size: 14px;
    line-height: 1.8;
}

.cc-single-product-meta .product_meta {
    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
}

.cc-single-product-meta .sku_wrapper,
.cc-single-product-meta .posted_in,
.cc-single-product-meta .tagged_as {
    display: block;
}

.cc-single-product-meta a {
    color: #35d7eb;
}


/* ==========================================================
   PACKAGE DETAILS
========================================================== */

.cc-single-product-details {
    padding: 0 0 70px;
}

.cc-single-product-details-card {
    padding: 42px;

    background:
        linear-gradient(
            145deg,
            rgba(9, 27, 42, 0.82),
            rgba(6, 19, 33, 0.82)
        );

    border: 1px solid rgba(18, 217, 239, 0.18);
    border-radius: 18px;
}

.cc-single-product-details-card .cc-eyebrow {
    margin-bottom: 24px;
}

.cc-single-product-content {
    max-width: 900px;

    color: #9aa9bc;

    font-size: 16px;
    line-height: 1.8;
}

.cc-single-product-content h2,
.cc-single-product-content h3,
.cc-single-product-content h4 {
    color: #f4f7fb;
}

.cc-single-product-content p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   BACK TO STORE
========================================================== */

.cc-single-product-back {
    padding: 0 0 90px;
}

.cc-store-back-link {
    display: inline-flex;

    align-items: center;

    color: #8190a5 !important;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
}

.cc-store-back-link:hover {
    color: #35d7eb !important;
}


/* ==========================================================
   VARIABLE PRODUCTS
========================================================== */

.cc-single-product-cart table.variations {
    width: 100%;

    margin-bottom: 20px;
}

.cc-single-product-cart table.variations th,
.cc-single-product-cart table.variations td {
    padding: 8px 0;

    background: transparent;

    border: 0;
}

.cc-single-product-cart table.variations label {
    color: #dce5ef;
}

.cc-single-product-cart table.variations select {
    width: 100%;

    padding: 12px 14px;

    color: #e4ebf3;
    background: #0d1928;

    border: 1px solid #26384c;
    border-radius: 8px;
}


/* ==========================================================
   STOCK
========================================================== */

.cc-single-product .stock {
    color: #65d99b !important;

    font-weight: 650;
}

.cc-single-product .stock.out-of-stock {
    color: #ef7070 !important;
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 900px) {

    .cc-single-product-main {
        padding: 50px 0 70px;
    }

    .cc-single-product-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .cc-single-product-image {
        max-width: 560px;

        margin: 0 auto;
    }

    .cc-single-product-title {
        font-size: clamp(40px, 10vw, 58px);
    }

}


@media (max-width: 600px) {

    .cc-single-product-main {
        padding-top: 35px;
    }

    .cc-single-product-image {
        padding: 12px;

        border-radius: 15px;
    }

    .cc-single-product-cart form.cart {
        flex-wrap: wrap;
    }

    .cc-single-product-cart .single_add_to_cart_button {
        flex: 1;
    }

    .cc-single-product-details-card {
        padding: 28px 22px;
    }

}