/* FlowerAura Styles */
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #3d3733;
    --secondary-color: #f8f7f7;
    --accent-color: #a34f45;
    --light-gray: #a0a1a0;
    --gold: #b09161;
    --pink: #d8a29a;
    --light-blue: #cbdfe7;
    --green: #4bae8b;
    --beige: #dfc5a8;
    --footer-bg: #f5f5f5;
    --footer-text: #444;
    --footer-link: #666;
    --footer-heading: #333;
    --footer-border: #ddd;
    --teal: #135B79;
}

/* Reset container styles */

.page-header {
    height: 100px;
}

.page-header .header.content {
    padding: 0;
    max-width: 100%;
}

/* Remove default Magento header styles */
.page-header .panel.wrapper,
.page-header .header.content > *:not(.header-vizagflorist) {
    display: none;
}

/* Logo Container */
.logo-container {
    margin-right: 20px;
}

/* Country Selector */
.country-selector {
    display: flex;
    align-items: center;
    margin-right: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--primary-color);
}

.country-flag {
    height: 16px;
    margin-right: 5px;
}

.dropdown-icon {
    height: 12px;
    margin-left: 5px;
}

/* Search Container */
.search-container {
    flex-grow: 1;
    margin: 0 20px;
    max-width: 450px;
}

.search-form {
    display: flex;
    position: relative;
}

.search-input {
    flex-grow: 1;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 14px;
    background-color: #f8f7f7;
    width: 100%;
    height: 40px;
}

.search-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.search-icon {
    height: 20px;
}

/* Utility Links */
.utility-links {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.utility-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 12px;
}

.utility-icon {
    height: 20px;
    margin-bottom: 3px;
}

.cart-icon-container {
    position: relative;
}

.cart-counter {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--accent-color);
    color: white;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* More Menu */
.more-menu-wrapper {
    position: relative;
}

.more-menu-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    width: 180px;
    z-index: 100;
    padding: 10px 0;
}

.more-menu-wrapper:hover .more-menu-dropdown {
    display: block;
}

.more-menu-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.more-menu-dropdown li {
    padding: 0;
}

.more-menu-dropdown a {
    display: block;
    padding: 8px 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 12px;
}

.more-menu-dropdown a:hover {
    background-color: #f9f9f9;
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
}

.mobile-menu-toggle svg {
    margin-right: 8px;
    width: 18px;
    height: 18px;
}

.navigation-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    max-width: 1440px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.nav-item {
    margin: 0;
    padding: 0;
}

.nav-link {
    display: block;
    padding: 12px 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: var(--accent-color);
}

/* Mobile Header Styles */
.mobile-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.mobile-logo {
    display: flex;
    justify-content: center;
}

.mobile-logo img {
    height: 32px;
}

.mobile-utility {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-cart {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #f00;
    color: white;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-location-bar {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background-color: #e6f2f7;
    font-size: 14px;
}

.location-flag {
    height: 20px;
    margin-right: 8px;
}

.edit-location {
    margin-left: auto;
}

/* Mobile Category Circles */
.mobile-category-circles {
    display: flex;
    justify-content: space-between;
    padding: 15px 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.category-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    text-align: center;
}

.circle-image {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #eee;
    margin-bottom: 5px;
}

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

.category-circle span {
    font-size: 12px;
    color: var(--primary-color);
    display: block;
    line-height: 1.2;
}

/* Mobile Slider */
.mobile-slider {
    margin: 10px 0;
}

.slider-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 10px;
}

.slider-image {
    flex: 0 0 auto;
    width: calc(50% - 5px);
    margin-right: 10px;
    border-radius: 8px;
    overflow: hidden;
    scroll-snap-align: start;
}

.slider-image img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 4px;
}

.dot.active {
    background-color: var(--teal);
}

.mobile-section-title {
    padding: 5px 16px;
}

.mobile-section-title h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {  
    .utility-link span {
        font-size: 11px;
    }
    
    .nav-link {
        padding: 12px 10px;
        font-size: 12px;
    }
}

@media (max-width: 991px) {    
    .search-container {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin: 15px 0 5px;
    }
    
    .utility-links {
        margin-left: 0;
    }
    
    .country-selector {
        margin-left: auto;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navigation-list {
        flex-direction: column;
        position: absolute;
        background-color: white;
        width: 100%;
        z-index: 100;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .navigation-list.active {
        max-height: 500px;
    }
    
    .nav-item {
        border-bottom: 1px solid #eee;
    }
    
    .nav-link {
        padding: 15px 20px;
    }
    
    .nav-link:hover::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .mobile-category-circles {
        padding: 10px 5px;
    }
    
    .category-circle {
        width: 70px;
    }
    
    .circle-image {
        width: 55px;
        height: 55px;
    }
    
    .slider-image {
        width: calc(100% - 20px);
    }
}

.cart-summary{
    top: 0px;
}

.primary.checkout{
    background-color: #0e4d65 !important;
    border-radius:8px;
}

button {
    background-color: #0e4d65 !important;
    color: white;
    transition: background 0.4s ease, color 0.4s ease;
}

button:hover {
    background: linear-gradient(90deg, #CDE7F6 0%, #F0F9FF 100%) !important;
    color: #0E4D65 !important;
}

.review-form .action.submit.primary{
    color: white !important
}

.cart-item-personalization .item-personalization {
    border-radius:8px;
}

img{
    border-radius:8px; 
}

a:hover {
    text-decoration: none;
}

input[type="file"] {
    padding: 10px 20px;
    background-color: #0e4d65 !important;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.4s ease, color 0.4s ease;
}

input[type="file"]::file-selector-button {
    background-color: #0e4d65 !important;
    border: none;
    color: white;
    cursor: pointer;
    transition: background 0.4s ease, color 0.4s ease;
    font-weight:600;
}

input[type="file"]::file-selector-button:hover {
    background: linear-gradient(90deg, #CDE7F6 0%, #F0F9FF 100%);
    color: #0E4D65;
}

.cart-summary,
.opc-block-summary{
    background-color: rgb(230, 244, 252);
}

#opc-sidebar > div.opc-block-shipping-information > div > div.ship-to > div.shipping-information-title > button:hover,
.search-button,
.shipping-information-title > .action-edit:hover,
.checkout-agreements-block > button.action-show,
button.action-edit,
button.action-edit:hover{
    background-color: white !important;
}

.discount-form .action-apply {
    color: white !important;
    background-color: #0e4d65; /* Optional: Set a background color */
    transition: background 0.4s ease, color 0.4s ease; /* Optional: transition for background and text color */
}

.discount-form .action-apply
.opc-block-summary,
input[type="file"]::file-selector-button,
input[type="file"],
button,
.cart-summary,
input:not([type="file"]),
textarea,
select,
.message-success,
.message-error,
.cart.item.message.error {
    border-radius: 8px !important;
}