:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --dark-color: #2d3436;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Urgency Bar */
.top-bar {
    background: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: bold;
}
.action-btn:hover{
    color: #fff;
}
/* Hero Section - Using img/hero.jpg */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('../img/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
}

.category-card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-10px);
}

.btn-buy {
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-buy:hover {
    background-color: #ee5253;
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
    color: white;
}

.countdown-box {
    background: #fff3f3;
    border: 2px dashed var(--primary-color);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.badge-sale {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    z-index: 10;
}



/*shop section=====================*/
/* Product Card Styling & Hover Effect */
.product-card {
    transition: all 0.3s ease-in-out;
    border: 1px solid #eee; 
    overflow: hidden; 
}

.product-card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.15) !important;
    border-color: var(--primary-color) !important; 
}

/* Image Zoom on Hover */
.product-card img {
    transition: transform 0.5s ease;
    height: 100%;
}

.product-card:hover img {
    transform: scale(1.05); 
}

/* Theme Button (Theme Color) */
.btn-theme {
    background-color: var(--primary-color); /* Coral Red */
    color: white;
    font-weight: bold;
    border: none;
    padding: 10px 0;
    transition: all 0.3s;
}

.btn-theme:hover {
    background-color: var(--secondary-color); 
    color: white;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
    transform: translateY(-2px);
}

/* FAQ Accordion Styling================== */
.accordion-item {
    overflow: hidden;
    border-radius: 10px !important; /* Rounded corners */
}

.accordion-button {
    color: var(--dark-color);
    background-color: #fff;
    box-shadow: none !important; /* Remove default blue shadow */
    transition: 0.3s;
}

.accordion-button:not(.collapsed) {
    background-color: #fff3f3; /* Light Red Background when open */
    color: var(--primary-color); /* Red Text when open */
}

.accordion-button:not(.collapsed)::after {
    /* Change the arrow icon color */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6b6b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 107, 107, 0.5);
}


/* Footer Styling========== */
footer {
    background-color: #1a1a1a !important; 
    font-size: 0.9rem;
}

.footer-link {
    color: #b0b0b0; 
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color); 
    padding-left: 5px; 

/* Social Icons */
.social-icons a {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #333;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Newsletter Input */
footer .form-control {
    border-radius: 30px 0 0 30px !important;
    padding-left: 20px;
}

footer .btn-theme {
    border-radius: 0 30px 30px 0 !important;
}