/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: #707070;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header-area {
    background-color: #111111;
    position: relative;
    z-index: 999;
}

.top-header-area {
    background-color: #111111;
    padding: 10px 0;
    border-bottom: 1px solid rgba(235, 235, 235, 0.2);
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header-meta a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    margin-right: 30px;
    transition: color 0.3s ease;
}

.top-header-meta a:hover {
    color: #70c745;
}

.top-header-meta i {
    color: #70c745;
    margin-right: 5px;
}

.language-selector select {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #70c745;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
}

.main-menu {
    background-color: #111111;
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    height: 40px;
    width: auto;
    max-width: 200px;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

.navbar-toggler {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.navbar-toggler span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu ul li {
    margin: 0 15px;
}

.nav-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: #70c745;
}

/* Breadcrumb Area */
.breadcrumb-area {
    background: linear-gradient(135deg, #70c745, #5cb85c);
    padding: 60px 0 30px;
    text-align: center;
    color: white;
}

.page-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-title nav {
    font-size: 16px;
}

.page-title nav a {
    color: white;
    text-decoration: none;
}

.page-title nav a:hover {
    text-decoration: underline;
}

/* Shop Area */
.shop-area {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Shop Info Banner */
.shop-info-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    background: linear-gradient(135deg, #70c745, #5cb85c);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    color: #ffffff;
    text-align: left;
}

.info-item i {
    font-size: 40px;
    margin-right: 15px;
    color: #ffffff;
    min-width: 50px;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* Product Section */
.product-section {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 50px;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

.product-image {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.product-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-image img:hover {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 42px;
    font-weight: 800;
    color: #70c745;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 300;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.stars {
    margin-right: 10px;
}

.stars i {
    color: #ffc107;
    font-size: 18px;
    margin-right: 2px;
}

.rating-text {
    color: #666;
    font-size: 14px;
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.current-price {
    font-size: 36px;
    font-weight: 700;
    color: #70c745;
    margin-right: 15px;
}

.original-price {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.discount-badge {
    background: #ff6b6b;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.product-description {
    margin-bottom: 25px;
}

.product-description h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.product-description ul {
    list-style: none;
    padding: 0;
}

.product-description li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #666;
}

.product-description li i {
    color: #70c745;
    margin-right: 10px;
    font-size: 14px;
}

.quantity-section {
    margin-bottom: 25px;
}

.quantity-section label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.quantity-controls {
    display: flex;
    align-items: center;
}

.qty-btn {
    background: #70c745;
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.qty-btn:hover {
    background: #5cb85c;
}

#quantity {
    width: 80px;
    height: 40px;
    text-align: center;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    margin: 0 10px;
    font-size: 16px;
    font-weight: 600;
}

.delivery-section {
    margin-bottom: 25px;
}

.delivery-section h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.delivery-option {
    display: flex;
    align-items: center;
}

.delivery-option input[type="radio"] {
    margin-right: 10px;
}

.delivery-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
}

.delivery-option label:hover {
    border-color: #70c745;
    background-color: #f8f9fa;
}

.delivery-option input[type="radio"]:checked + label {
    border-color: #70c745;
    background-color: #f0f8f0;
}

.delivery-option label i {
    margin-right: 10px;
    color: #70c745;
}

.total-section {
    margin-bottom: 30px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.total-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.total-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

.total-final {
    border-top: 2px solid #e9ecef;
    padding-top: 10px;
    font-weight: 700;
    font-size: 18px;
    color: #333;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    flex: 2;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-secondary {
    background: #ffffff;
    color: #70c745;
    border: 2px solid #70c745;
    flex: 1;
}

.btn-secondary:hover {
    background: #70c745;
    color: #ffffff;
}

.btn-large {
    padding: 18px 35px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
}

.feature i {
    color: #70c745;
    margin-right: 8px;
    font-size: 16px;
}

/* Order Form Section */
.order-form-section {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.order-form-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.order-form-section p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #70c745;
}

.order-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

.order-summary h3 {
    margin-bottom: 15px;
    color: #333;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #666;
}

.summary-item.total {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    font-weight: 700;
    font-size: 18px;
    color: #333;
}

/* Footer Area */
.footer-area {
    background: #111111;
    color: #b7b7b7;
    position: relative;
}

.main-footer-area {
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-widget p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-info a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: background 0.3s ease;
}

.social-info a:hover {
    background: #70c745;
}

.widget-title h5 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.widget-nav {
    list-style: none;
    padding: 0;
}

.widget-nav li {
    margin-bottom: 8px;
}

.widget-nav li a {
    color: #b7b7b7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget-nav li a:hover {
    color: #ffffff;
}

.contact-information p {
    margin-bottom: 10px;
    line-height: 1.4;
}

.contact-information span {
    color: #70c745;
    font-weight: 600;
}

.contact-information a {
    color: #b7b7b7;
    text-decoration: none;
}

.contact-information a:hover {
    color: #ffffff;
}

.footer-bottom-area {
    border-top: 1px solid #333;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copywrite-text p {
    margin: 0;
    font-size: 14px;
}

.copywrite-text a {
    color: #70c745;
    text-decoration: none;
}

.footer-nav a {
    color: #b7b7b7;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
}

.footer-nav a:hover {
    color: #ffffff;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 24px;
    margin-right: 10px;
}

.whatsapp-float span {
    font-weight: 600;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    color: white;
    font-weight: 600;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: #28a745;
}

.notification.error {
    background: #dc3545;
}

.notification.info {
    background: #17a2b8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-card {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        padding: 30px;
    }
    
    .shop-info-banner {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navbar-toggler {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #111111;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .nav-menu ul li {
        margin: 10px 0;
    }
    
    .top-header-meta a span {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .product-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-nav a {
        margin: 0 10px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        padding: 12px 16px;
    }
    
    .whatsapp-float span {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .product-title {
        font-size: 32px;
    }
    
    .product-subtitle {
        font-size: 18px;
    }
    
    .current-price {
        font-size: 28px;
    }
    
    .order-form-section {
        padding: 25px;
    }
    
    .order-form-section h2 {
        font-size: 24px;
    }
    
    .btn-large {
        padding: 15px 25px;
        font-size: 16px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Loading States */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}