/* Custom Styles for Swadharaa Theme */

/* Font imports */
:root {
  --primary: #033619;
  --secondary: #7a5900;
  --surface: #fcf9f3;
}

/* Smooth transitions */
* {
  transition: all 0.3s ease;
}

/* Hover effects */
.hover-text-success:hover {
  color: #033619 !important;
}

/* Card hover effects */
.card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Hero section */
.hero {
  min-height: 90vh;
}

/* Accordion custom styling */
.accordion-button:not(.collapsed) {
  background-color: #f8f9fa !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  border-color: transparent !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23033619' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23033619' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
  transform: rotate(0deg) !important;
}

/* Backdrop blur */
.backdrop-blur {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Responsive fixes */
@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .hero .lead {
    max-width: 100% !important;
  }
}

/* WooCommerce specific overrides */
.woocommerce .product {
  margin-bottom: 2rem;
}

.woocommerce .products .product .button {
  background-color: #033619 !important;
  color: white !important;
  border-radius: 0 !important;
  padding: 10px 20px !important;
}

.woocommerce .products .product .button:hover {
  background-color: #022b14 !important;
}

.woocommerce .star-rating {
  color: #7a5900 !important;
}

/* Navbar Styles */
.navbar {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

/* Navbar links - match the original design */
.navbar-nav .nav-link {
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #414941 !important;
  padding: 8px 0 !important;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: #033619 !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #033619;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Active link */
.navbar-nav .nav-link.active {
  color: #033619 !important;
}

.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Mobile menu styles */
@media (max-width: 991.98px) {
  .navbar-nav {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .navbar-nav .nav-link {
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-nav .nav-link:hover {
    padding-left: 8px !important;
  }
}

/* Fix for WooCommerce cart icon */
.position-relative .badge {
  font-size: 0.6rem;
  padding: 0.25rem 0.4rem;
  margin-top: -4px;
}

/* Backdrop blur support for older browsers */
@supports not (backdrop-filter: blur(20px)) {
  header {
    background-color: rgba(252, 249, 243, 0.95) !important;
  }
}

.hero-main-text {
  font-size: 56px;
  line-height: 1.1;
  color: #033619;
  font-family: 'Playfair Display', serif;
}
.custom-nav {
  padding: 6px 95px;
}
@media (max-width: 991px) {
  .hero-main-text {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .hero-main-text {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .hero-main-text {
    font-size: 32px;
    
  }
  .custom-nav{
    padding:0px;
  }
}


/* ==================================
   SHOP PAGE STYLES
================================== */

/* Shop Hero */
.shop-hero {
    background: var(--surface);
	padding-top: 30px;
}

/* Product Grid */
.product-grid-section {
    background: var(--surface);
}

/* Product Card Hover */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* Pairings Section */
.pairings-section {
    background: var(--surface-container-low);
}

/* Newsletter Section */
.newsletter-section {
    background: var(--primary-container);
}

/* Form Styles */
.newsletter-section .form-control::placeholder {
    color: rgba(140, 189, 149, 0.6);
}

.newsletter-section .form-control:focus {
    background: transparent;
    box-shadow: none;
    border-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .shop-hero .hero-main-text {
        font-size: 32px !important;
    }
	.shop-hero{
		padding-top:60px;
	}
    
    .product-grid-section .row {
        gap: 2rem;
    }
    
    .pairings-section .card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .shop-hero .hero-main-text {
        font-size: 28px !important;
    }
    
    .newsletter-section .row {
        text-align: center;
    }
    
    .newsletter-section form {
        margin: 0 auto;
    }
}


/* ==================================
   STORY PAGE STYLES
================================== */

/* Story Hero */
.story-hero {
    background: linear-gradient(135deg, #fcf9f3 0%, #f0eee8 100%);
}

/* Roots Section */
.roots-section {
    background: #fcf9f3;
}

/* Mission Section */
.mission-section {
    background: #033619;
}

/* Farmers Section */
.farmers-section {
    background: #fcf9f3;
}

/* Quote Section */
.quote-section {
    background: #f6f3ed;
}

/* Sustainability Section */
.sustainability-section {
    background: #fcf9f3;
}

/* Animation for hero chevron */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .story-hero h1 {
        font-size: 2.5rem !important;
    }
    
    .story-hero {
        min-height: 70vh;
    }
    
    .mission-section .row > div {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .story-hero h1 {
        font-size: 2rem !important;
    }
    
    .quote-section blockquote {
        font-size: 1.5rem !important;
    }
    
    .farmers-section .col-lg-8 {
        margin-bottom: 1rem;
    }
}


/* ==================================
   PROCESS PAGE STYLES
================================== */

/* Process Hero */
.process-hero {
    background: #fcf9f3;
	padding-top:30px;
}

/* Process Steps */
.process-steps {
    background: #fcf9f3;
}

.process-steps .row {
    margin-bottom: 80px;
}

.process-steps .row:last-child {
    margin-bottom: 0;
}

/* Advantages Section */
.advantages-section {
    background: #1f4d2e;
}

.advantages-section .benefit-card {
    transition: all 0.5s ease;
    backdrop-filter: blur(4px);
}

.advantages-section .benefit-card:hover {
    transform: translateY(-4px);
}

/* Ayurvedic Section */
.ayurvedic-section {
    background: #fcf9f3;
}

/* CTA Section */
.cta-section {
    background: #033619;
}

/* Responsive */
@media (max-width: 991px) {
    .process-hero h1 {
        font-size: 2.5rem !important;
    }
	
    .process-steps .row {
        margin-bottom: 60px;
    }
    
    .process-steps .row:last-child {
        margin-bottom: 0;
    }
    
    .advantages-section h2 {
        font-size: 2.5rem !important;
    }
    
    .ayurvedic-section h2 {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .process-hero {
        padding-top: 60px;
    }
    
    .process-hero h1 {
        font-size: 2rem !important;
    }
    
    .process-steps h3 {
        font-size: 2rem !important;
    }
    
    .advantages-section h2 {
        font-size: 2rem !important;
    }
    
    .advantages-section .col-md-4 {
        margin-bottom: 1rem;
    }
    
    .ayurvedic-section h2 {
        font-size: 2rem !important;
    }
    
    .cta-section h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 576px) {
    .process-hero h1 {
        font-size: 1.75rem !important;
    }
    
    .process-steps h3 {
        font-size: 1.75rem !important;
    }
    
    .ayurvedic-section .col-sm-6 {
        margin-bottom: 1rem;
    }
}

/* ==================================
   CONTACT PAGE STYLES
================================== */

/* Contact Hero */
.contact-hero {
    background: #fcf9f3;
}

/* Contact Info & Form - Side by Side */
.contact-info {
    background: #fcf9f3;
}

/* Form Styles */
.contact-info .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid #c1c9bf;
    border-radius: 0;
    padding: 12px 0;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: #1c1c18;
    transition: border-color 0.3s ease;
    box-shadow: none;
}

.contact-info .form-control:focus {
    border-color: #033619;
    box-shadow: none;
    background: transparent;
}

.contact-info .form-control::placeholder {
    color: rgba(65, 73, 65, 0.5);
}

.contact-info select {
    appearance: none;
    cursor: pointer;
}

/* Map Section */
.map-section {
    background: #fcf9f3;
}

/* Wholesale Section */
.wholesale-section {
    background: #fcf9f3;
}

/* Ping Animation */
@keyframes ping {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .contact-hero h1 {
        font-size: 2.5rem !important;
    }
    
    .contact-info .col-lg-5,
    .contact-info .col-lg-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .contact-info .col-lg-5 > div {
        padding: 0 !important;
        margin-bottom: 40px;
    }
    
    .wholesale-section .container .col-12 > div {
        padding: 40px 24px !important;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding-top: 60px;
    }
    
    .contact-hero h1 {
        font-size: 2rem !important;
    }
    
    .contact-info .col-lg-7 > div {
        padding: 24px !important;
    }
    
    .wholesale-section .container .col-12 > div {
        padding: 32px 20px !important;
    }
}

@media (max-width: 576px) {
    .contact-hero h1 {
        font-size: 1.75rem !important;
    }
    
    .contact-info .col-lg-5 > div > div {
        gap: 32px !important;
    }
    
    .contact-info .col-lg-5 > div > div > div {
        gap: 16px !important;
    }
}

/* ==================================
   PRIVACY POLICY PAGE STYLES
================================== */

/* Privacy Hero */
.privacy-hero {
    background: #fcf9f3;
}

/* Privacy Sections */
.privacy-section {
    background: #fcf9f3;
}

/* Section spacing */
.privacy-section:last-of-type {
    padding-bottom: 80px;
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 991px) {
    .privacy-hero h1 {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        padding-top: 100px;
    }
    
    .privacy-hero h1 {
        font-size: 2rem !important;
    }
    
    .privacy-section h2 {
        font-size: 1.75rem !important;
    }
    
    .privacy-section .col-md-6 {
        margin-bottom: 16px;
    }
    
    .privacy-section .col-md-6:last-child {
        margin-bottom: 0;
    }
    
    /* CTA Box */
    .privacy-section [style*="background: #033619"] {
        padding: 24px !important;
    }
}

@media (max-width: 576px) {
    .privacy-hero h1 {
        font-size: 1.75rem !important;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem !important;
    }
    
    .privacy-section ul li {
        font-size: 0.95rem !important;
    }
}

/* Animation for sections */
.privacy-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease-out;
}

.privacy-section.visible {
    opacity: 1;
    transform: translateY(0);
}


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

.single-product-page {
    background: #fcf9f3;
}

/* Product Gallery */
.single-product-page .bg-light {
    background: #f0eee8 !important;
}

/* Quantity Input */
.single-product-page input[type="number"]::-webkit-inner-spin-button,
.single-product-page input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.single-product-page input[type="number"] {
    -moz-appearance: textfield;
}

/* Tabs */
.single-product-page .nav-tabs .nav-link:hover {
    color: #033619;
}

.single-product-page .nav-tabs .nav-link:focus {
    color: #033619;
}

/* Reviews */
.single-product-page #reviews .commentlist {
    list-style: none;
    padding: 0;
}

.single-product-page #reviews .comment {
    padding: 16px 0;
    border-bottom: 1px solid rgba(193, 201, 191, 0.2);
}

/* Responsive */
@media (max-width: 991px) {
    .single-product-page .product_title {
        font-size: 2rem !important;
    }
}

@media (max-width: 768px) {
    .single-product-page {
        padding-top: 120px !important;
    }
    
    .single-product-page .product_title {
        font-size: 1.75rem !important;
    }
    
    .single-product-page .price {
        font-size: 1.5rem !important;
    }
}

/* ==================================
   CART PAGE - TABLE STYLES
================================== */

.woocommerce-cart-form table.shop_table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Manrope', sans-serif;
}

.woocommerce-cart-form table.shop_table thead th {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #414941;
    padding: 12px 8px;
    border-bottom: 1px solid rgba(193, 201, 191, 0.2);
    text-align: left;
}

.woocommerce-cart-form table.shop_table tbody td {
    padding: 16px 8px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(193, 201, 191, 0.1);
}

.woocommerce-cart-form table.shop_table .product-thumbnail img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.woocommerce-cart-form table.shop_table .product-name a {
    color: #033619;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
}

.woocommerce-cart-form table.shop_table .product-name a:hover {
    color: #7a5900;
}

.woocommerce-cart-form table.shop_table .product-price {
    color: #414941;
    font-weight: 600;
}

.woocommerce-cart-form table.shop_table .product-subtotal {
    color: #033619;
    font-weight: 700;
    font-size: 1.1rem;
}

.woocommerce-cart-form table.shop_table .remove {
    color: #dc3545 !important;
    font-size: 1.5rem;
    text-decoration: none !important;
    font-weight: 300;
    transition: color 0.3s;
}

.woocommerce-cart-form table.shop_table .remove:hover {
    color: #b02a37 !important;
}

/* Quantity Input */
.woocommerce-cart-form .quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid #c1c9bf;
}

.woocommerce-cart-form .quantity input[type="number"] {
    width: 50px;
    text-align: center;
    border: none;
    padding: 6px 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    background: transparent;
}

.woocommerce-cart-form .quantity input[type="number"]::-webkit-inner-spin-button,
.woocommerce-cart-form .quantity input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.woocommerce-cart-form .quantity input[type="number"] {
    -moz-appearance: textfield;
}

/* Actions */
.woocommerce-cart-form .actions {
    padding: 20px 0 !important;
}

.woocommerce-cart-form .coupon {
    display: flex;
    gap: 10px;
    align-items: center;
}

.woocommerce-cart-form .coupon input#coupon_code {
    border: 1px solid #c1c9bf;
    border-radius: 0;
    padding: 10px 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    width: 200px;
    background: transparent;
}

.woocommerce-cart-form .coupon input#coupon_code:focus {
    border-color: #033619;
    outline: none;
}

.woocommerce-cart-form .button {
    background: #033619;
    color: white;
    border: none;
    padding: 10px 24px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0;
    transition: all 0.3s;
    cursor: pointer;
}

.woocommerce-cart-form .button:hover {
    background: #022b14;
}

.woocommerce-cart-form .button[name="update_cart"] {
    background: transparent;
    color: #414941;
    border: 1px solid #c1c9bf;
}

.woocommerce-cart-form .button[name="update_cart"]:hover {
    background: #f6f3ed;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .woocommerce-cart-form table.shop_table thead {
        display: none;
    }
    
    .woocommerce-cart-form table.shop_table tbody td {
        display: block;
        width: 100% !important;
        text-align: right;
        padding: 8px 0;
        border: none;
    }
    
    .woocommerce-cart-form table.shop_table tbody td::before {
        content: attr(data-title);
        float: left;
        font-weight: 600;
        color: #414941;
    }
    
    .woocommerce-cart-form table.shop_table tbody td.product-thumbnail {
        text-align: center;
    }
    
    .woocommerce-cart-form table.shop_table tbody td.product-thumbnail::before {
        display: none;
    }
    
    .woocommerce-cart-form table.shop_table tbody td.product-name {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .woocommerce-cart-form table.shop_table tbody td.product-name::before {
        display: none;
    }
    
    .woocommerce-cart-form table.shop_table tbody td.product-price {
        text-align: center;
    }
    
    .woocommerce-cart-form table.shop_table tbody td.product-quantity {
        text-align: center;
    }
    
    .woocommerce-cart-form table.shop_table tbody td.product-subtotal {
        text-align: center;
        font-size: 1.3rem;
    }
    
    .woocommerce-cart-form .coupon {
        flex-direction: column;
        width: 100%;
    }
    
    .woocommerce-cart-form .coupon input#coupon_code {
        width: 100%;
    }
    
    .woocommerce-cart-form .actions {
        text-align: center !important;
    }
}

/* ==================================
   CHECKOUT PAGE STYLES
================================== */

.checkout-page {
    background: #fcf9f3;
}

/* Form Fields */
.checkout-page .woocommerce-form__label {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    color: #1c1c18;
    font-size: 0.85rem;
}

.checkout-page .input-text {
    border: 1px solid #c1c9bf;
    border-radius: 0;
    padding: 10px 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    width: 100%;
    transition: border-color 0.3s ease;
    background: transparent;
}

.checkout-page .input-text:focus {
    border-color: #033619;
    outline: none;
    box-shadow: none;
}

.checkout-page .select2-container .select2-selection--single {
    border: 1px solid #c1c9bf;
    border-radius: 0;
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: transparent;
}

.checkout-page .select2-container .select2-selection--single .select2-selection__arrow {
    height: 100%;
}

/* Order Review - WooCommerce output */
.checkout-page .shop_table {
    width: 100%;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
}

.checkout-page .shop_table th {
    font-weight: 600;
    color: #414941;
    padding: 8px 0;
    border-bottom: 1px solid rgba(193, 201, 191, 0.2);
}

.checkout-page .shop_table td {
    padding: 8px 0;
    border-bottom: 1px solid rgba(193, 201, 191, 0.1);
    color: #1c1c18;
}

.checkout-page .shop_table .cart-subtotal td,
.checkout-page .shop_table .order-total td {
    font-weight: 700;
    color: #033619;
}

/* Payment Methods */
.checkout-page .wc_payment_methods {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checkout-page .wc_payment_methods li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(193, 201, 191, 0.1);
}

.checkout-page .wc_payment_methods li label {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    color: #1c1c18;
    cursor: pointer;
}

.checkout-page .wc_payment_methods li .payment_box {
    background: #f0eee8;
    border-radius: 6px;
    padding: 12px 16px;
    margin-top: 8px;
    font-size: 0.9rem;
    color: #414941;
}

.checkout-page .wc_payment_methods li .payment_box p {
    margin-bottom: 0;
}

/* Place Order Button */
.checkout-page #place_order {
    width: 100%;
    background: #033619 !important;
    color: white !important;
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 0;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(3,54,25,0.2);
    cursor: pointer;
    padding: 16px;
}

.checkout-page #place_order:hover {
    background: #022b14 !important;
}

/* Responsive */
@media (max-width: 991px) {
    .checkout-page {
        padding-top: 120px !important;
    }
    
    .checkout-page .col-lg-7,
    .checkout-page .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .checkout-page .col-lg-5 > div {
        position: static !important;
        margin-top: 24px;
    }
}

@media (max-width: 576px) {
    .checkout-page #customer_details {
        padding: 16px !important;
    }
    
    .checkout-page .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .checkout-page .input-text {
        font-size: 0.9rem;
    }
}


/* ==================================
   THANK YOU / ORDER RECEIVED PAGE
================================== */

.thankyou-page {
    background: #fcf9f3;
}

/* Order Details Cards */
.thankyou-page .order_details {
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
}

.thankyou-page .order_details li {
    list-style: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(193, 201, 191, 0.1);
}

.thankyou-page .order_details li:last-child {
    border-bottom: none;
}

.thankyou-page .order_details .product-name {
    color: #033619;
    font-weight: 600;
}

.thankyou-page .order_details .product-total {
    font-weight: 600;
    color: #033619;
}

/* Order Items Table */
.thankyou-page .shop_table {
    width: 100%;
    font-family: 'Manrope', sans-serif;
    border-collapse: collapse;
}

.thankyou-page .shop_table th {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #414941;
    padding: 12px 8px;
    border-bottom: 2px solid rgba(193, 201, 191, 0.2);
    text-align: left;
}

.thankyou-page .shop_table td {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(193, 201, 191, 0.1);
    vertical-align: middle;
}

.thankyou-page .shop_table .product-name {
    color: #033619;
    font-weight: 600;
}

.thankyou-page .shop_table .product-total {
    font-weight: 600;
    color: #033619;
}

/* Addresses */
.thankyou-page address {
    font-style: normal;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .thankyou-page {
        padding-top: 120px !important;
    }
    
    .thankyou-page .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 12px;
    }
    
    .thankyou-page .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 16px;
    }
    
    .thankyou-page .shop_table {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .thankyou-page h1 {
        font-size: 2rem !important;
    }
    
    .thankyou-page .btn {
        width: 100%;
        text-align: center;
    }
    
    .thankyou-page .d-flex.flex-wrap {
        flex-direction: column;
    }
}

/* ==================================
   MY ACCOUNT PAGE STYLES
================================== */

.my-account-dashboard,
.my-account-orders,
.my-account-edit-address,
.my-account-edit-account {
    background: #fcf9f3;
}

/* Account Navigation */
.woocommerce-MyAccount-navigation {
    background: #f6f3ed;
    border-radius: 8px;
    padding: 8px 0;
}

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

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

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px 20px;
    font-family: 'Manrope', sans-serif;
    color: #414941;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-left: 3px solid transparent;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    color: #033619;
    background: rgba(3, 54, 25, 0.05);
    border-left-color: #033619;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    color: #033619;
    background: rgba(3, 54, 25, 0.08);
    border-left-color: #033619;
    font-weight: 600;
}

/* Form Inputs */
.my-account-edit-address .input-text,
.my-account-edit-account .input-text {
    width: 100%;
    border: 1px solid #c1c9bf;
    border-radius: 0;
    padding: 10px 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    background: transparent;
    transition: border-color 0.3s ease;
}

.my-account-edit-address .input-text:focus,
.my-account-edit-account .input-text:focus {
    border-color: #033619;
    outline: none;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 991px) {
   
}

@media (max-width: 768px) {
    .my-account-dashboard .col-lg-3,
    .my-account-orders .col-lg-3,
    .my-account-edit-address .col-lg-3,
    .my-account-edit-account .col-lg-3 {
        margin-bottom: 24px;
    }
    
    .my-account-dashboard .col-md-6,
    .my-account-dashboard .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 12px;
    }
    
    .woocommerce-MyAccount-navigation ul li a {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .my-account-dashboard > div > div,
    .my-account-orders > div > div,
    .my-account-edit-address > div > div,
    .my-account-edit-account > div > div {
        padding: 16px !important;
    }
    
    .my-account-edit-address .d-flex,
    .my-account-edit-account .d-flex {
        flex-direction: column;
    }
    
    .my-account-edit-address .btn,
    .my-account-edit-account .btn {
        width: 100%;
    }
}
/* ==================================
   MY ACCOUNT - LOGIN PAGE
================================== */

.my-account-login {
    background: #fcf9f3;
}

.my-account-login .input-text {
    width: 100%;
    border: 1px solid #c1c9bf;
    border-radius: 0;
    padding: 10px 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    background: transparent;
    transition: border-color 0.3s ease;
}

.my-account-login .input-text:focus {
    border-color: #033619;
    outline: none;
    box-shadow: none;
}

.my-account-login .woocommerce-form-login__submit,
.my-account-login .woocommerce-form-register__submit {
    width: 100%;
    padding: 16px;
    background: #033619;
    color: white;
    border: none;
    border-radius: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(3, 54, 25, 0.2);
}

.my-account-login .woocommerce-form-login__submit:hover,
.my-account-login .woocommerce-form-register__submit:hover {
    background: #022b14;
}

/* Responsive */
@media (max-width: 991px) {
    .my-account-login {
        padding-top: 120px !important;
    }
    
    .my-account-login .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .my-account-login .col-lg-5:first-child {
        margin-bottom: 24px;
    }
}

@media (max-width: 576px) {
    .my-account-login > div > div > div {
        padding: 24px !important;
    }
}

/* ==================================
   VIEW ORDER PAGE
================================== */

.my-account-view-order {
    background: #fcf9f3;
}

.my-account-view-order .order-status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.my-account-view-order .order-status-badge.completed {
    background: #d4edda;
    color: #155724;
}

.my-account-view-order .order-status-badge.processing {
    background: #fff3cd;
    color: #856404;
}

.my-account-view-order .order-status-badge.pending {
    background: #f8d7da;
    color: #721c24;
}

/* Address */
.my-account-view-order address {
    font-style: normal;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
   
}

@media (max-width: 768px) {
    .my-account-view-order .d-flex.justify-content-between {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 8px;
    }
    
    .my-account-view-order table {
        font-size: 0.85rem;
    }
    
    .my-account-view-order .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 16px;
    }
}

@media (max-width: 576px) {
    .my-account-view-order .d-flex.flex-wrap {
        flex-direction: column;
    }
    
    .my-account-view-order .d-flex.flex-wrap a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ==================================
   PRODUCT REVIEWS - CUSTOM STYLES
================================== */

/* Review List */
.commentlist .comment {
    padding: 20px 0;
    border-bottom: 1px solid rgba(193, 201, 191, 0.15);
}

.commentlist .comment:last-child {
    border-bottom: none;
}

.commentlist .comment .comment_container {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.commentlist .comment .avatar {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.commentlist .comment .comment-text {
    flex: 1;
}

.commentlist .comment .comment-text .star-rating {
    color: #fec33e;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.commentlist .comment .comment-text .meta {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    color: #414941;
    margin-bottom: 6px;
}

.commentlist .comment .comment-text .meta strong {
    color: #033619;
}

.commentlist .comment .comment-text .description {
    font-family: 'Manrope', sans-serif;
    color: #1c1c18;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Star Rating in Form */
.comment-form-rating .fa-star {
    font-size: 2rem;
    cursor: pointer;
    color: #c1c9bf;
    transition: color 0.2s ease;
}

.comment-form-rating .fa-star:hover {
    transform: scale(1.1);
}

.comment-form-rating input[type="radio"]:checked + .fa-star {
    color: #fec33e;
}

/* Responsive */
@media (max-width: 576px) {
    .commentlist .comment .comment_container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .commentlist .comment .avatar {
        width: 60px;
        height: 60px;
    }
    
    .comment-form-rating .fa-star {
        font-size: 1.5rem;
    }
}

/* ==================================
   BLOG PAGE STYLES
================================== */

/* Blog Hero */
.blog-hero {
    background: #fcf9f3;
}

/* Blog Filters */
.blog-filters .btn {
    transition: all 0.3s ease;
}

.blog-filters .btn:first-child {
    background: #033619;
    color: white;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(3, 54, 25, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(3, 54, 25, 0.12);
}

/* Blog Featured */
.blog-featured h2:hover {
    color: #294b32;
}

/* Blog Grid - Line clamp */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Pagination */
.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: white;
    color: #414941;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin: 0 4px;
}

.page-numbers:hover {
    background: #f6f3ed;
    color: #033619;
}

.page-numbers.current {
    background: #033619;
    color: white;
}

.page-numbers.dots {
    background: transparent;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-hero h1 {
        font-size: 2.5rem !important;
    }
    
    .blog-featured h2 {
        font-size: 1.8rem !important;
    }
    
    .blog-featured .col-lg-5 {
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding-top: 100px !important;
    }
    
    .blog-hero h1 {
        font-size: 2rem !important;
    }
    
    .blog-featured h2 {
        font-size: 1.5rem !important;
    }
    
    .blog-featured .col-lg-7 img {
        height: 250px !important;
    }
    
    .blog-newsletter h2 {
        font-size: 2rem !important;
    }
    
    .blog-more-articles article {
        flex-direction: column !important;
        text-align: center;
    }
    
    .blog-more-articles .col-md-4 {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .blog-hero h1 {
        font-size: 1.8rem !important;
    }
    
    .blog-featured h2 {
        font-size: 1.3rem !important;
    }
    
    .blog-filters .d-flex {
        gap: 8px !important;
    }
    
    .blog-filters .btn {
        font-size: 0.6rem !important;
        padding: 6px 14px !important;
    }
    
    .blog-newsletter h2 {
        font-size: 1.8rem !important;
    }
    
    .blog-newsletter .d-flex {
        flex-direction: column !important;
    }
}

/* Newsletter Form */
.blog-newsletter input::placeholder {
    color: rgba(65, 73, 65, 0.5);
}

/* ==================================
   SINGLE POST STYLES
================================== */

.single-post {
    background: #fcf9f3;
}

/* Post Content */
.post-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #033619;
    font-weight: 600;
}

.post-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: #033619;
    font-weight: 600;
}

.post-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #033619;
    font-weight: 600;
}

.post-content p {
    margin-bottom: 2rem;
    color: #414941;
    line-height: 1.9;
}

.post-content ul,
.post-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.75rem;
    color: #414941;
}

.post-content blockquote {
    border-left: 4px solid #7a5900;
    padding: 16px 24px;
    margin: 2rem 0;
    background: #f6f3ed;
    border-radius: 0 8px 8px 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #033619;
}

.post-content blockquote p {
    margin: 0;
}

.post-content .wp-block-image {
    margin: 2rem 0;
}

.post-content .wp-block-image img {
    border-radius: 8px;
}

.post-content .wp-block-image figcaption {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    color: #717971;
    text-align: center;
    margin-top: 0.5rem;
}

.post-content .wp-block-button .wp-block-button__link {
    background: #033619;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.post-content .wp-block-button .wp-block-button__link:hover {
    background: #294b32;
}

.post-content .wp-block-pullquote {
    border-top: 2px solid #7a5900;
    border-bottom: 2px solid #7a5900;
    padding: 2rem 0;
    text-align: center;
}

.post-content .wp-block-pullquote blockquote {
    border: none;
    background: transparent;
    padding: 0;
}

.post-content .wp-block-pullquote blockquote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #033619;
}

/* Comments */
.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list .comment {
    padding: 20px 0;
    border-bottom: 1px solid rgba(193, 201, 191, 0.15);
}

.comment-list .comment .comment-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.comment-list .comment .comment-author .avatar {
    border-radius: 50%;
}

.comment-list .comment .comment-author .fn {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: #033619;
    font-style: normal;
}

.comment-list .comment .comment-metadata {
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    color: #414941;
}

.comment-list .comment .comment-content {
    font-family: 'Manrope', sans-serif;
    color: #1c1c18;
    line-height: 1.7;
    margin-top: 8px;
}

.comment-respond {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(193, 201, 191, 0.2);
}

.comment-respond .comment-reply-title {
    font-family: 'Playfair Display', serif;
    color: #033619;
    font-size: 1.5rem;
    font-weight: 700;
}

.comment-respond .comment-reply-title small {
    margin-left: 12px;
}

.comment-respond .comment-reply-title small a {
    color: #7a5900;
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    border: 1px solid #c1c9bf;
    border-radius: 4px;
    padding: 12px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    background: #fcf9f3;
    transition: border-color 0.3s;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    border-color: #033619;
    outline: none;
    background: white;
}

.comment-form .submit {
    background: #033619;
    color: white;
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
}

.comment-form .submit:hover {
    background: #022b14;
}

.comment-form .comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0;
}

.comment-form .comment-form-cookies-consent input {
    width: auto;
    margin: 0;
}

.comment-form .comment-form-cookies-consent label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    color: #414941;
}

/* Responsive */
@media (max-width: 991px) {
    .single-post {
        padding-top: 100px !important;
    }
    
    .single-post h1 {
        font-size: 2.5rem !important;
    }
    
    .newsletter-cta h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 768px) {
    .single-post h1 {
        font-size: 2rem !important;
    }
    
    .single-post .post-content {
        font-size: 0.95rem !important;
    }
    
    .single-post .post-content h2 {
        font-size: 1.5rem !important;
    }
    
    .single-post .post-content blockquote {
        padding: 12px 16px !important;
        margin: 1.5rem 0 !important;
    }
    
    .single-post .d-flex.justify-content-between {
        flex-direction: column;
        text-align: center;
    }
    
    .single-post .d-flex.justify-content-between > div {
        max-width: 100% !important;
        text-align: center !important;
    }
    
    .single-post .d-flex.justify-content-between > div:first-child {
        margin-bottom: 16px;
    }
    
    .newsletter-cta [style*="background: #033619"] {
        padding: 40px 24px !important;
    }
    
    .newsletter-cta h2 {
        font-size: 1.8rem !important;
    }
    
    .newsletter-cta .d-flex {
        flex-direction: column !important;
    }
    
    .related-posts .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .single-post h1 {
        font-size: 1.8rem !important;
    }
    
    .single-post .post-content {
        font-size: 0.9rem !important;
    }
    
    .single-post .post-content h2 {
        font-size: 1.3rem !important;
    }
    
    .single-post [style*="background: #f6f3ed"] {
        padding: 20px !important;
    }
    
    .single-post .col-md-2 {
        text-align: center !important;
    }
    
    .comment-form input[type="text"],
    .comment-form input[type="email"],
    .comment-form input[type="url"] {
        width: 100% !important;
    }
}

/* ==================================
   FAQ PAGE STYLES
================================== */

.faq-hero {
    background: #fcf9f3;
}

.faq-content {
    background: #fcf9f3;
}

/* FAQ Items */
.faq-item {
    border: 1px solid rgba(193, 201, 191, 0.2);
    border-radius: 8px;
    overflow: hidden;
    background: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(3, 54, 25, 0.3);
}

.faq-item.active {
    border-color: #033619;
    box-shadow: 0 8px 24px rgba(3, 54, 25, 0.08);
}

/* FAQ Toggle Button */
.faq-toggle {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #033619;
    background: transparent;
    border: none;
    padding: 16px 24px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-toggle:hover {
    background: rgba(3, 54, 25, 0.03);
}

.faq-toggle .faq-icon {
    font-size: 1.25rem;
    color: #033619;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer > div {
    padding: 0 24px 24px;
    font-family: 'Manrope', sans-serif;
    color: #414941;
    font-size: 1rem;
    line-height: 1.7;
}

/* Sidebar Navigation */
.faq-nav-link {
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 4px 0;
}

.faq-nav-link.active {
    color: #033619;
}

.faq-nav-link:hover {
    color: #033619;
}

/* CTA Section */
.faq-content .cta-section {
    background: #1f4d2e;
    color: white;
    border-radius: 12px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 991px) {
    .faq-hero {
        padding-top: 120px !important;
    }
    
    .faq-hero h1 {
        font-size: 2.5rem !important;
    }
    
    .faq-content .d-flex.align-items-center.gap-3 {
        gap: 12px !important;
    }
}

@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 2rem !important;
    }
    
    .faq-toggle {
        font-size: 1rem !important;
        padding: 14px 16px !important;
    }
    
    .faq-answer > div {
        padding: 0 16px 16px !important;
        font-size: 0.95rem !important;
    }
    
    .faq-content .cta-section {
        padding: 32px 20px !important;
    }
    
    .faq-content .d-flex.flex-column.flex-sm-row {
        flex-direction: column !important;
    }
    
    .faq-content .d-flex.flex-column.flex-sm-row .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .faq-hero h1 {
        font-size: 1.8rem !important;
    }
    
    .faq-toggle {
        font-size: 0.95rem !important;
        padding: 12px 14px !important;
    }
    
    .faq-answer > div {
        font-size: 0.9rem !important;
    }
    
    .faq-content .d-flex.align-items-center.gap-3 h2 {
        font-size: 1.2rem !important;
    }
}

/* ==================================
   SHIPPING & RETURNS PAGE STYLES
================================== */

.shipping-hero {
    background: #fcf9f3;
}

.shipping-content {
    background: #fcf9f3;
}

.shipping-content .card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px -10px rgba(3, 54, 25, 0.08);
    margin-bottom: 32px;
    border: none;
}

.shipping-content .card-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(3, 54, 25, 0.1);
}

.shipping-content .card-section-title i {
    color: #033619;
    font-size: 1.5rem;
}

.shipping-content .card-section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #033619;
    font-weight: 700;
    margin: 0;
}

.shipping-content h4 {
    font-family: 'Playfair Display', serif;
    color: #033619;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
}

.shipping-content p {
    font-family: 'Manrope', sans-serif;
    color: #414941;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.shipping-content ul,
.shipping-content ol {
    font-family: 'Manrope', sans-serif;
    color: #414941;
    font-size: 1rem;
    line-height: 1.8;
}

.shipping-content ul li,
.shipping-content ol li {
    margin-bottom: 8px;
}

/* CTA Section */
.shipping-content .cta-box {
    background: #f6f3ed;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
    .shipping-hero {
        padding-top: 120px !important;
    }
    
    .shipping-hero h1 {
        font-size: 2.5rem !important;
    }
    
    .shipping-content .card {
        padding: 30px !important;
    }
}

@media (max-width: 768px) {
    .shipping-hero h1 {
        font-size: 2rem !important;
    }
    
    .shipping-content .card {
        padding: 24px !important;
    }
    
    .shipping-content .card-section-title h2 {
        font-size: 1.3rem !important;
    }
    
    .shipping-content h4 {
        font-size: 1rem !important;
    }
    
    .shipping-content .cta-box {
        padding: 30px 20px !important;
    }
    
    .shipping-content .cta-box .d-flex {
        flex-direction: column;
        align-items: stretch !important;
    }
    
    .shipping-content .cta-box .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .shipping-hero h1 {
        font-size: 1.8rem !important;
    }
    
    .shipping-content .card {
        padding: 16px !important;
    }
    
    .shipping-content .card-section-title h2 {
        font-size: 1.1rem !important;
    }
    
    .shipping-content ul li,
    .shipping-content ol li {
        font-size: 0.95rem !important;
    }
}

/* ==================================
   CONTACT FORM 7 - SWADHARAA STYLES
================================== */

.cf7-form-container {
    font-family: 'Manrope', sans-serif;
}

/* Form Groups */
.cf7-form-group {
    margin-bottom: 24px;
}

/* Labels */
.cf7-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #414941;
    display: block;
    margin-bottom: 8px;
}

.cf7-required {
    color: #dc3545;
}

/* Input Fields */
.cf7-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #c1c9bf;
    padding: 12px 0;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: #1c1c18;
    transition: border-color 0.3s ease;
    outline: none;
}

.cf7-input:focus {
    border-color: #033619;
}

.cf7-input::placeholder {
    color: rgba(65, 73, 65, 0.5);
}

/* Textarea */
.cf7-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #c1c9bf;
    padding: 12px 0;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: #1c1c18;
    transition: border-color 0.3s ease;
    outline: none;
    resize: none;
    min-height: 120px;
}

.cf7-textarea:focus {
    border-color: #033619;
}

.cf7-textarea::placeholder {
    color: rgba(65, 73, 65, 0.5);
}

/* Submit Button */
.cf7-submit {
    width: 100%;
    background: #033619 !important;
    color: white !important;
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 16px 48px;
    border: none !important;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 8px;
}

.cf7-submit:hover {
    background: #022b14 !important;
    opacity: 0.9;
}

.cf7-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success/Error Messages */
.wpcf7-response-output {
    font-family: 'Manrope', sans-serif;
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid;
}

.wpcf7-mail-sent-ok {
    background: #d4edda;
    color: #155724;
    border-color: #28a745;
}

.wpcf7-mail-sent-ng {
    background: #f8d7da;
    color: #721c24;
    border-color: #dc3545;
}

.wpcf7-spam-blocked {
    background: #fff3cd;
    color: #856404;
    border-color: #ffc107;
}

.wpcf7-validation-errors {
    background: #f8d7da;
    color: #721c24;
    border-color: #dc3545;
}

/* Error Field Highlight */
.wpcf7-not-valid {
    border-color: #dc3545 !important;
}

.wpcf7-not-valid-tip {
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    color: #dc3545;
    margin-top: 4px;
}

/* Loading Spinner */
.wpcf7 .ajax-loader {
    margin-left: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .cf7-submit {
        padding: 14px 24px;
        font-size: 0.65rem;
    }
}

/*Footer */
.footer-img-cstm{
background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    height: 100px;
}


.process-section{
    background:#fcf9f3;
    padding:80px 0;
}

.process-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#fbb011;
    color:#1c1c1c;
    padding:10px 24px;
    border-radius:12px;
    font-size:11.2px;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.process-title{
    margin-top:20px;
    color:#033619;
    font-family:'Playfair Display',serif;
    font-size:40px;
    font-weight:700;
}

.divider{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-top:18px;
}

.divider span{
    width:120px;
    height:1px;
    background:#d8cdb2;
}

.divider i{
    color:#fbb011;
}

.process-card{
    text-align:center;
    position:relative;
}

.process-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:22px;
}

.process-card h4{
    margin-top:24px;
    font-size:20px;
    color:#033619;
    font-family:'Playfair Display',serif;
    font-weight:700;
}

.process-card p{
    color:#555;
    font-size:14px;
    line-height:1.7;
    max-width:280px;
    margin:10px auto 0;
}

.number{
   position: absolute;
    left: -15px;
    top: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    border: 4px solid #fcf9f3;
    z-index: 5;
}

.green{
    background:#0c6b37;
}

.yellow{
    background:#fbb011;
    color:#fff;
}
.woocommerce-MyAccount-navigation-link--downloads{
	display:none;
}