/*
Theme Name: Calydan Co
Theme URI: https://maroon-dugong-231938.hostingersite.com
Author: Calydan Co
Description: A custom pastel sky WooCommerce theme created for Calydan Co.
Version: 1.0
*/

/* Base Colors */
:root {
    --calydan-sky: #f7f3ff;
    --calydan-pink: #ffd6ea;
    --calydan-blue: #dff5ff;
    --calydan-purple: #e8ddff;
}

body {
    margin: 0;
    background: var(--calydan-sky);
}

/* Prevent horizontal overflow */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.calydan-header {
    background: #ffffff;
    padding: 20px;
    text-align: center;
}

.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}


.logo-container img {
    width: auto;
    height: auto;
    max-width: 400px;
    max-height: 260px;
    object-fit: contain;
    display: block;
    margin: 15px auto;
}

body {
    background: #ffffff;
}

.shipping-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: #dff5ff;
    padding: 10px 0;
}

.shipping-track {
    display: inline-block;
    animation: shipping-scroll 25s linear infinite;
    font-size: 16px;
    letter-spacing: 1px;
}

@keyframes shipping-scroll {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}


.calydan-header {
    padding: 20px;
    text-align: center;
}


.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}


.main-navigation li {
    display: inline-block;
    margin: 0 12px;
}


.main-navigation a,
.cart-link {
    text-decoration: none;
    font-size: 18px;
}


.header-actions {
    margin-top: 15px;
}


.cart-link {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    background: #ffd6ea;
}

/* Cloud marquee */

.cloud-divider {
    overflow: hidden;
    width: 100%;
    height: 120px;
}

.cloud-track {
    display: flex;
    width: max-content;
    animation: cloud-scroll 25s linear infinite;
}

.cloud-track.reverse {
    display: flex;
    width: max-content;
    animation: cloud-scroll-reverse 25s linear infinite;
}


@keyframes cloud-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


@keyframes cloud-scroll-reverse {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}


/* Banner hotspots */

.graphic-banner {
    position: relative;
}

.button-hotspot {
    position: absolute;
    display: block;
    z-index: 5;
}


/* Desktop positions */

.waxmelts-button {
    left: 64%;
    top: 85%;
    width: 17%;
    height: 9%;
}

.bathbody-button {
    left: 41.5%;
    top: 76.6%;
    width: 17%;
    height: 9.1%;
}

.newcollection-button {
    left: 16.6%;
    top: 82.9%;
    width: 17%;
    height: 9%;
}

.mystery-button {
    left: 60%;
    top: 48.2%;
    width: 17%;
    height: 9%;
}

.sale-button {
    left: 59.7%;
    top: 62.6%;
    width: 17%;
    height: 9%;
}

@media (max-width: 768px) {

    .waxmelts-button {
        left: 30%;
        top: 70.7%;
        width: 40%;
        height: 8.1%;
    }

    .bathbody-button {
        left: 30.5%;
        top: 88.3%;
        width: 40%;
        height: 8.1%;
    }

    .newcollection-button {
        left: 30.2%;
        top: 88%;
        width: 40%;
        height: 8.1%;
    }

    .mystery-button {
        left: 30%;
        top: 70.5%;
        width: 41%;
        height: 8.1%;
    }

    .sale-button {
        left: 29.9%;
        top: 89%;
        width: 41%;
        height: 8.1%;
    }

}


/* Calydan graphic sections */

.hero-graphic,
.graphic-banner {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-graphic picture,
.graphic-banner picture {
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.hero-graphic img,
.graphic-banner img {
    display: block;
    width: 100%;
    max-width: 2000px;
    height: auto;
    margin: 0 auto;
}


/* Mobile */

@media (max-width: 768px) {

    .hero-graphic,
    .graphic-banner {
        width: 100%;
    }

    .hero-graphic img,
    .graphic-banner img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

}

/* ==========================================
   Calydan Co Universal Button Styling
========================================== */

button,
input[type="submit"],
input[type="button"],
.wp-element-button,
.wp-block-button__link,
.wc-block-components-button,
.single_add_to_cart_button,
.checkout-button,
.button,
a.button {
    background: #ffd6ea;
    color: #5d4d63;
    border: 2px solid transparent;
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Hover */

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.wp-element-button:hover,
.wp-block-button__link:hover,
.wc-block-components-button:hover,
.single_add_to_cart_button:hover,
.checkout-button:hover,
.button:hover,
a.button:hover {
    background: #e8ddff;
    border: 2px dashed #8fd9ff;
    color: #4d3f5d;
    transform: translateY(-2px);
}

/* ==========================================
   Mobile
========================================== */

@media (max-width: 768px) {

    button,
    input[type="submit"],
    input[type="button"],
    .wp-element-button,
    .wp-block-button__link,
    .wc-block-components-button,
    .single_add_to_cart_button,
    .checkout-button,
    .button,
    a.button {
        width: 100%;
        max-width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }

}

/* =================================
   Calydan Co - WooCommerce My Account
================================= */

.woocommerce-account {
    font-family: Arial, sans-serif;
    font-size: 14px;
}

/* Main account area */

.woocommerce-account .woocommerce {
    max-width: 1200px;
    margin: 40px auto;
}

/* Navigation */

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin-bottom: 10px;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: block;
    background: #ffd6ea;
    color: #5d4d63;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: .25s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
    background: #FFBFB9;
    border: 2px dashed #FFE3B9;
}


/* Content box */

.woocommerce-account .woocommerce-MyAccount-content {
    background: #ffffff;
    border-radius: 30px;
    padding: 35px;
}


/* Buttons */

.woocommerce-account button,
.woocommerce-account .button {
    background: #ffd6ea;
    color: #5d4d63;
    border-radius: 999px;
    border: 2px solid transparent;
    padding: 12px 25px;
}

.woocommerce-account button:hover,
.woocommerce-account .button:hover {
    background: #FFBFB9;
    border: 2px dashed #FFE3B9;
}


/* Mobile */

@media (max-width: 768px) {

    .woocommerce-account .woocommerce {
        margin: 20px auto;
    }

    .woocommerce-account .woocommerce-MyAccount-content {
        padding: 20px;
        border-radius: 20px;
    }

}

/* Center My Account Navigation Container Only */

.woocommerce-account .woocommerce-MyAccount-navigation {
    float: none;
    margin: 0 auto;
    text-align: center;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    margin: 0 auto;
}

@media (max-width: 768px) {

    .woocommerce-account .woocommerce-MyAccount-navigation {
        margin-left: auto;
        margin-right: auto;
    }

}
/* ==========================================
   Calydan Co Typography
========================================== */

body,
button,
input,
select,
textarea {

    font-family: Arial, sans-serif;
    color: #000000;

}

body{

    font-size:14px;
    line-height:1.6;

}

h1,h2,h3,h4,h5,h6{

    font-family: Arial,sans-serif;

}

a{

    color:#a88cff;
    text-decoration:none;
}

a:hover{

    color:#7b6cff;

}

/* ==========================================
   Global Buttons
========================================== */

button,
.button,
.wp-element-button,
input[type="submit"],
.single_add_to_cart_button,
.add_to_cart_button{

    background:#ffd6ea !important;
    color:#5d4d63 !important;

    border:2px solid transparent !important;
    border-radius:999px !important;

    padding:12px 28px !important;

    font-family:Arial,sans-serif !important;
    font-weight:700;

    transition:.25s ease;
}

button:hover,
.button:hover,
.wp-element-button:hover,
input[type="submit"]:hover,
.single_add_to_cart_button:hover,
.add_to_cart_button:hover{

    background:#FFBFB9 !important;
    border:2px dashed #FFE3B9 !important;

}

@media (max-width:768px){

body{

    font-size:13px;

}

button,
.button,
.wp-element-button,
input[type="submit"],
.single_add_to_cart_button,
.add_to_cart_button{

    width:100%;
    max-width:320px;
    margin:auto;

}

}

/* ==========================================
   Calydan Co - Product Page
========================================== */

/* Desktop */

.single-product .site-main,
.single-product .woocommerce {

    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px;

}

.single-product div.product {

    display: flex;
    align-items: flex-start;
    gap: 50px;

}

.single-product div.product .woocommerce-product-gallery {

    flex: 0 0 500px;
    max-width: 500px;

}

.single-product div.product .woocommerce-product-gallery img {

    width: 100%;
    height: auto;
    border-radius: 25px;

}

.single-product div.product .summary {

    flex: 1;

}


/* ==========================================
   Mobile
========================================== */

@media (max-width:768px){

.single-product .site-main,
.single-product .woocommerce{

    max-width:100%;
    padding:20px 15px;

}

.single-product div.product{

    display:block;

}

.single-product div.product .woocommerce-product-gallery{

    max-width:100%;
    width:100%;
    margin-bottom:25px;

}

.single-product div.product .woocommerce-product-gallery img{

    width:100%;
    height:auto;

}

.single-product div.product .summary{

    width:100%;

}

}

/* ==========================================
   Calydan WooCommerce Layout
========================================== */

/* Desktop */

.woocommerce-page .site-main,
.woocommerce-page main,
.woocommerce-page .woocommerce,
.single-product .site-main,
.single-product main,
.single-product .woocommerce {

    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 25px;
    box-sizing: border-box;

}


/* Mobile */

@media (max-width:768px){

.woocommerce-page .site-main,
.woocommerce-page main,
.woocommerce-page .woocommerce,
.single-product .site-main,
.single-product main,
.single-product .woocommerce{

    max-width:100%;
    padding:20px 15px;

}

}


/* ==========================================
   Calydan Co - Cart & Checkout Width
========================================== */

/* Desktop */

.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout,
.wc-block-cart,
.wc-block-checkout {

    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;

}


/* Inner content */

.wc-block-components-sidebar,
.wc-block-components-main {

    box-sizing: border-box;

}


/* Mobile */

@media (max-width:768px){

.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout,
.wc-block-cart,
.wc-block-checkout {

    max-width:100%;
    padding-left:15px;
    padding-right:15px;

}

}

/* ==========================================
   Calydan Co - Cart Remove Button Final Spacing
========================================== */

/* Desktop */

.wc-block-cart-item__quantity {

    display: flex !important;
    align-items: center !important;
    gap: 35px !important;

}


.wc-block-cart-item__remove-link {

    position: relative !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 48px !important;
    height: 48px !important;

    padding: 10px !important;

    margin-left: 25px !important;

}


.wc-block-cart-item__remove-link svg {

    width: 26px !important;
    height: 26px !important;

}


/* ==========================================
   Mobile
========================================== */

@media (max-width:768px){

.wc-block-cart-item__quantity {

    gap: 20px !important;

}


.wc-block-cart-item__remove-link {

    width: 44px !important;
    height: 44px !important;

    margin-left: 10px !important;

}


.wc-block-cart-item__remove-link svg {

    width: 24px !important;
    height: 24px !important;

}

}
/* ==========================================
   Calydan Co - Cart Quantity Input Fix
========================================== */

/* Quantity number field */

.wc-block-components-quantity-selector__input {

    width: 45px !important;
    min-width: 45px !important;

    height: 40px !important;

    text-align: center !important;

    border-radius: 999px !important;

    font-family: Arial, sans-serif !important;
    font-weight: bold !important;

}


/* Keep the whole selector from clipping */

.wc-block-components-quantity-selector {

    overflow: visible !important;

}


/* Mobile */

@media (max-width:768px){

.wc-block-components-quantity-selector__input {

    width: 40px !important;
    min-width: 40px !important;

}

}

/* ==========================================
   Calydan Co - Remove Quantity Gray Outline
========================================== */

.wc-block-components-quantity-selector,
.wc-block-components-quantity-selector__input {

    outline: none !important;
    box-shadow: none !important;

}


.wc-block-components-quantity-selector {

    border-color: transparent !important;

}


/* Keep accessibility focus clean */

.wc-block-components-quantity-selector__input:focus {

    outline: none !important;
    box-shadow: none !important;

}

/* ==========================================
   Calydan Co - Link Styling
========================================== */

a,
a:visited {

    color: #000000 !important;
    text-decoration: none;

}


a:hover,
a:focus {

    color: #86bbe3 !important;
    text-decoration: none;

}


/* Mobile */

@media (max-width:768px){

a,
a:visited {

    color: #000000 !important;

}


a:hover,
a:focus {

    color: #86bbe3 !important;

}
/* ==========================================
   Calydan Co - Header Cart Link Override
========================================== */

.header-actions > a[href="/cart/"] {

    display: inline-block !important;

    font-size: 24px !important;
    font-family: Arial, sans-serif !important;
    font-weight: bold !important;

    line-height: 1.5 !important;

    transform: scale(1.2);
    transform-origin: center;

    color: #000000 !important;
}


/* Hover */

.header-actions > a[href="/cart/"]:hover {

    color: #ff69b4 !important;

}


/* Mobile */

@media (max-width:768px){

.header-actions > a[href="/cart/"] {

    font-size: 20px !important;
    transform: scale(1.1);

}
	
	/* ==========================================
   Calydan Co - Mobile Cart Remove Button Fix
========================================== */

@media (max-width:768px){

    .wc-block-cart-item__remove-link {

        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        margin-left: 15px !important;
        margin-top: 5px !important;

        width: 40px !important;
        height: 40px !important;

    }


    .wc-block-cart-item__remove-link svg {

        width: 24px !important;
        height: 24px !important;

    }


    .wc-block-cart-item__quantity {

        gap: 15px !important;

    }

/* ==========================================
   Calydan Co - Mobile Cart Trash Position
   (visual move only)
========================================== */

@media (max-width:768px){

    .wc-block-cart-item__remove-link {

        position: relative !important;
        left: 40px !important;

        margin-left: 0 !important;

    }

}
/* ==========================================
   Calydan Co - Homepage Full Width Restore
========================================== */

.home .calydan-homepage {

    width: 100% !important;
    max-width: none !important;

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

}


.home .hero-graphic {

    width: 100% !important;
    max-width: none !important;

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

}


.home .hero-graphic picture,
.home .hero-graphic img {

    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;

}


/* Mobile */

@media (max-width:768px){

    .home .calydan-homepage,
    .home .hero-graphic {

        width: 100% !important;
        max-width: none !important;

    }

}