
/* --- Extracted from blog.html --- */
/* Custom DHAASU CSS for breathtaking blog sections */
.recipe-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    background: #fff;
    height: 100%;
}
.recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.18);
}
.blog-section {
    margin-top: 60px;
    margin-bottom: 40px;
}

/* --- Extracted from blog.html --- */
/* Ultra-Premium Smooth CSS */
    .smooth-card { border: none; overflow: hidden; background: #fff; border-radius: 20px !important; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); cursor: pointer; }
    .smooth-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
    .smooth-img-wrap { overflow: hidden; position: relative; border-radius: inherit; }
    .smooth-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
    .smooth-card:hover .smooth-img-wrap img { transform: scale(1.08); }
    
    .img-hover-zoom { overflow: hidden; border-radius: 12px !important; }
    .img-hover-zoom img { transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
    .img-hover-zoom:hover img { transform: scale(1.08); }
    
    .editorial-badge { position: absolute; top: 16px; left: 16px; font-size: 0.70rem; font-weight: 800; letter-spacing: 1.5px; padding: 6px 14px; border-radius: 30px; z-index: 2; text-transform: uppercase; box-shadow: 0 4px 15px rgba(0,0,0,0.2); backdrop-filter: blur(5px); }
    .editorial-title { font-family: 'Playfair Display', Georgia, serif; line-height: 1.35; }
    
    .section-header-mag { position: relative; padding-bottom: 12px; margin-bottom: 35px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(0,0,0,0.05); }
    .section-header-mag::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 80px; height: 3px; background: #ff416c; border-radius: 2px; }
    
    .target-gradient { background: linear-gradient(transparent 10%, rgba(0,0,0,0.95) 100%); }
    .target-gradient-light { background: linear-gradient(transparent 30%, rgba(0,0,0,0.85) 100%); }
    
    .list-item-hover { transition: all 0.3s ease; padding: 12px; border-radius: 16px; background: transparent; }
    .list-item-hover:hover { background: #fff; box-shadow: 0 8px 25px rgba(0,0,0,0.08); transform: translateX(5px); cursor: pointer; }
    .list-item-title { transition: color 0.3s ease; }
    .list-item-hover:hover .list-item-title { color: #ff416c !important; }

/* --- Extracted from chanar-dalna.html --- */
/* Custom CSS with modern enhancements */
  :root {
    --primary-color: #0d6efd;
    --secondary-color: #fd7e14;
    --accent-color: #8d6e63;
  }
  
  .recipe-header {
    background: linear-gradient(135deg, rgba(13,110,253,0.1) 0%, rgba(253,126,20,0.1) 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
  }
  
  .recipe-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%230d6efd" fill-opacity="0.05" d="M30,10L50,30L70,10L90,30L70,50L90,70L70,90L50,70L30,90L10,70L30,50L10,30L30,10Z"/></svg>');
    opacity: 0.3;
  }
  
  .step {
    display: flex;
    position: relative;
    margin-bottom: 2rem;
    padding-left: 20px;
  }
  
  .step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
    position: relative;
    z-index: 1;
  }
  
  .step.completed .step-number {
    background: var(--secondary-color);
  }
  
  .step-content {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  
  .step-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  }
  
  /* Enhanced animation container */
  
  .plate {
    width: 120px;
    height: 120px;
    background: #f0f0f0;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
  }
  
  .plate::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
  }
  
  .food {
    width: 100px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 25px;
    position: absolute;
    top: 35px;
    left: 10px;
    transform-origin: center bottom;
    animation: foodWobble 3s infinite ease-in-out;
  }
  
  @keyframes foodWobble {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
  }
  
  @keyframes sparkle {
    0% { transform: scale(0) rotate(0deg); opacity: 0; }
    50% { transform: scale(2) rotate(180deg); opacity: 1; }
    100% { transform: scale(0) rotate(360deg); opacity: 0; }
  }
  
  /* Enhanced ingredient list */
  .ingredient-list .form-check-input:checked + label {
    text-decoration: line-through;
    color: #6c757d;
    position: relative;
  }
  
  .ingredient-list .form-check-input:checked + label::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    transform: translateY(-50%);
  }
  
  .ingredient-category {
    background: rgba(13, 110, 253, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin: 1.5rem 0 1rem;
    display: inline-block;
    font-weight: bold;
    color: var(--primary-color);
  }
  
  /* Interactive rating system */
  .rating-container {
    display: flex;
    align-items: center;
    margin: 1rem 0;
  }
  
  .rating-stars {
    display: flex;
    margin-right: 1rem;
  }
  
  .rating-star {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
  }
  
  .rating-star.active,
  .rating-star:hover {
    color: gold;
  }
  
  /* Modern card design */
  .recipe-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
  }
  
  .recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  }
  
  /* Video tutorial section */
  .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 2rem;
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  /* Interactive tab system */
  .recipe-tabs .nav-link {
    color: #495057;
    font-weight: 600;
    border: none;
    padding: 0.75rem 1.5rem;
    position: relative;
  }
  
  .recipe-tabs .nav-link.active {
    color: var(--primary-color);
    background: transparent;
  }
  
  .recipe-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
  }
  

  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    
    .step-number {
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
    }
  }
  
  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
  }
  
  /* 3D flip card for variations */
  .variation-card {
    perspective: 1000px;
    height: 200px;
    cursor: pointer;
  }
  
  .variation-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  .variation-card:hover .variation-inner {
    transform: rotateY(180deg);
  }
  
  .variation-front, .variation-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    
  }
  
  .variation-back {
    background: white;
    transform: rotateY(180deg);
    padding: 1rem;
    display: flex;
    align-items: center;
  }
  
  /* Gradient badges */
  .badge-gradient {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 500;
    padding: 0.5em 1em;
  }
  
  /* Serving size adjustment */
  .serving-size-container {
    white-space: nowrap;
  }
  
  .serving-size {
    display: inline-block;
    width: auto;
    padding: 1 0.5rem;
    height: 1.5rem;
    font-size: 0.875rem;
    background-color: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
  }
  
  .serving-size:focus {
    outline: none;
    box-shadow: none;
  }

  .add-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
  }
  .add-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
  }

  .card-body {
    flex: 1 1 auto;
    padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
    color: var(--bs-card-color);
    margin: 10px;
}

/* --- Extracted from chanar-dalna.html --- */
/* Floating Timer Styles */
    .floating-timer-widget {
      position: fixed;
      right: 20px;
      bottom: 100px;
      z-index: 1050;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .floating-timer-widget.collapsed {
      transform: translateX(calc(100% + 40px));
    }
    .timer-toggle-btn {
      position: absolute;
      left: -50px;
      top: 15px;
      width: 45px;
      height: 45px;
      border-radius: 50% 0 0 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      border: 1px solid rgba(255,255,255,0.2) !important;
      border-right: none !important;
    }
    .timer-toggle-btn:hover {
      background: var(--primary-color) !important;
      filter: brightness(1.1);
    }
    .timer-panel {
      width: 250px;
      box-shadow: -5px 5px 15px rgba(0,0,0,0.1);
    }

/* --- Extracted from chanar-dalna.html --- */
/* Floating Timer Functionality Styles */
    .floating-timer-widget {
      position: fixed;
      right: 20px;
      bottom: 100px;
      z-index: 1050;
      transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .floating-timer-widget.collapsed {
      transform: translateX(calc(100% + 40px));
    }
    .timer-toggle-btn {
      position: absolute;
      left: -60px;
      top: 20px;
      width: 60px;
      height: 60px;
      border-radius: 50% 0 0 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      animation: gentleFloat 3s ease-in-out infinite;
    }
    .timer-toggle-btn:hover {
      animation: giggle 0.5s ease-in-out;
    }
    
    /* Playful Animations */
    @keyframes gentleFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    @keyframes giggle {
      0%, 100% { transform: rotate(0deg); }
      25% { transform: rotate(-15deg); }
      75% { transform: rotate(15deg); }
    }
    @keyframes peekaboo {
      0% { transform: translateY(20px); opacity: 0; }
      100% { transform: translateY(0); opacity: 1; }
    }
    
    .timer-bubble {
      width: 240px;
      background: #ffffff;
      border-radius: 30px;
      box-shadow: 0 15px 35px rgba(255, 107, 129, 0.2);
      border: 2px solid #ff6b81;
      position: relative;
    }
    
    .peeking-chef {
      position: absolute;
      top: -45px;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      animation: peekaboo 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .chef-speech {
      background: #fff;
      border: 2px solid #ff6b81;
      border-radius: 12px;
      padding: 4px 10px;
      font-size: 0.75rem;
      font-weight: bold;
      color: #ff4757;
      white-space: nowrap;
      margin-top: -5px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      position: relative;
    }
    .chef-speech::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 50%;
      transform: translateX(-50%);
      border-width: 6px 6px 0;
      border-style: solid;
      border-color: #ff6b81 transparent transparent transparent;
    }
    
    .modern-time {
      font-size: 2.2rem;
      font-weight: 800;
      color: #333;
      letter-spacing: 2px;
      margin: 10px 0;
      font-family: 'Nunito', 'Segoe UI', sans-serif;
    }
    .timer-controls button {
      transition: transform 0.2s;
      background: #fff;
    }
    .timer-controls button:hover {
      transform: scale(1.15) rotate(5deg);
    }



